WIP
DirectOutput framework for virtual pinball cabinets WIP
|
Go to: Overview |
Data representing the state of a table emlement More...
Public Member Functions | |
TableElementData (TableElementTypeEnum TableElementType, int Number, int Value) | |
Initializes a new instance of the TableElementData class. More... | |
TableElementData (Char TableElementTypeChar, int Number, int Value) | |
Initializes a new instance of the TableElementData class. More... | |
TableElementData (TableElement TableElement) | |
Initializes a new instance of the TableElementData class from the data in a TableElement. More... | |
TableElementData (string TableElementName, int Value) | |
Public Attributes | |
TableElementTypeEnum | TableElementType |
The type of the table element. More... | |
int | Number |
The number of the table element. More... | |
int | Value |
The value of the table element. More... | |
string | Name |
The name of the table element More... | |
Data representing the state of a table emlement
Definition at line 8 of file TableElementData.cs.
DirectOutput.Table.TableElementData.TableElementData | ( | TableElementTypeEnum | TableElementType, |
int | Number, | ||
int | Value | ||
) |
Initializes a new instance of the TableElementData class.
TableElementType | Type of the table element as defined in TableElementTypeEnum. |
Number | The number of the table element. |
Value | The value of the table element. |
Definition at line 39 of file TableElementData.cs.
DirectOutput.Table.TableElementData.TableElementData | ( | Char | TableElementTypeChar, |
int | Number, | ||
int | Value | ||
) |
Initializes a new instance of the TableElementData class.
TableElementTypeChar | Single character specifing the type of the table element. Valid values are the enum values in TableElementTypeEnum. |
Number | The number of the table element. |
Value | The value of the table element. |
Definition at line 54 of file TableElementData.cs.
DirectOutput.Table.TableElementData.TableElementData | ( | TableElement | TableElement | ) |
Initializes a new instance of the TableElementData class from the data in a TableElement.
TableElement | The table element containg the data. |
Definition at line 75 of file TableElementData.cs.
DirectOutput.Table.TableElementData.TableElementData | ( | string | TableElementName, |
int | Value | ||
) |
Definition at line 83 of file TableElementData.cs.
string DirectOutput.Table.TableElementData.Name |
The name of the table element
Definition at line 29 of file TableElementData.cs.
int DirectOutput.Table.TableElementData.Number |
The number of the table element.
Definition at line 19 of file TableElementData.cs.
TableElementTypeEnum DirectOutput.Table.TableElementData.TableElementType |
The type of the table element.
Definition at line 14 of file TableElementData.cs.
int DirectOutput.Table.TableElementData.Value |
The value of the table element.
Definition at line 24 of file TableElementData.cs.