A class to store a column of data for a ResultTable.
More...
|
| T | GetValue< T > (int Index) |
| | Helper to access a strongly typed value in the Data array. More...
|
| |
| | ResultColumn (string name, Array data) |
| | Creates a new populated result column. More...
|
| |
|
| ResultColumn (string name, Array data, params IParameter[] parameters) |
| | Creates a new result column with parameters attached.
|
| |
|
ResultColumn | AddParameters (params IParameter[] additionalParameters) |
| | Create a result column clone with additional parameters.
|
| |
|
|
string | Name [get] |
| | The name of the column.
|
| |
|
Array | Data [get] |
| | The data in the column.
|
| |
|
TypeCode | TypeCode [get] |
| | The TypeCode of data in the column.
|
| |
|
string | ObjectType [get] |
| | String describing the column.
|
| |
|
IData | Parent [get] |
| | The parent object of this column. Usually a Result Table. This value will get assigned during ResultProxy.Publish.
|
| |
|
IParameters | Parameters [get] |
| | The parameters attached to this column.
|
| |
Properties inherited from OpenTap.IResultColumn |
|
Array | Data [get] |
| | Data in the column.
|
| |
|
string | Name [get] |
| | Name of this object.
|
| |
|
string | ObjectType [get] |
| | String describing this object.
|
| |
|
IData | Parent [get] |
| | Parent of this object.
|
| |
|
IParameters | Parameters [get] |
| | All parameters that describes this object.
|
| |
A class to store a column of data for a ResultTable.
◆ ResultColumn()
| OpenTap.ResultColumn.ResultColumn |
( |
string |
name, |
|
|
Array |
data |
|
) |
| |
|
inline |
Creates a new populated result column.
- Parameters
-
| name | The name of the column. |
| data | The data of the column. |
◆ GetValue< T >()
| T OpenTap.ResultColumn.GetValue< T > |
( |
int |
Index | ) |
|
|
inline |
Helper to access a strongly typed value in the Data array.
- Template Parameters
-
- Parameters
-
- Returns