Method | Description | |
---|---|---|
NewRecord ( ) : |
Creates a new record with a label.
|
|
Recordset ( ) : System.Collections.Generic | ||
SetValue ( |
Sets the value of the field at the given field index in the given row.
|
|
SetValue ( int recordIndex, int fieldIndex, string value ) : void |
Sets the value of the field at the given record/field index.
|
|
ToString ( ) : string |
public Recordset ( ) : System.Collections.Generic | ||
return | System.Collections.Generic |
public SetValue ( |
||
record | The record to be updated; may be null. | |
fieldIndex | int | The index of the field to be updated. |
value | string | The value. |
return | void |
public SetValue ( int recordIndex, int fieldIndex, string value ) : void | ||
recordIndex | int | The index of the record to be updated. |
fieldIndex | int | The index of the field to be updated. |
value | string | The value. |
return | void |