IDataSetRecord
What it does
Represents a record from a data set.
Methods
| Definition | Description |
|---|---|
| AddValue ( column : string, value : object ) | Adds a value to a data set record. The name and value of the column must be specified. |
| GetColumnName ( index : int ) : string |
Gets the name of a column.
|
| GetValue ( index : int ) : object | Gets the value of a field. |
Properties
| Name | Type | Access | Description |
| ColumnCount | Int | Read-only | The amount of fields in a record |
12.04.2024 18:16:02
Note: Since a column can have multiple names, IDataSetRecord can include the name item multiple times with different values.