Name | Description | |
---|---|---|
Count | Gets the count of records in the recordset. |
The following tables list the members exposed by IC1FlexReportRecordset.
Name | Description | |
---|---|---|
BOF | Returns true if the cursor is pointing at the first record in the data source. | |
EOF | Returns true if the cursor is pointing past the last record in the data source. | |
GetBookmark | Returns the current cursor position. | |
GetFieldNames | Gets an array of strings with the names of all fields in the data source. | |
GetFieldTypes | Gets an array of types of all fields in the data source. | |
GetFieldValue | Gets the value of the specified field at the current cursor position.
If the cursor is past the end of the data (EOF condition), this method should return null rather than throw an exception. | |
MoveFirst | Moves the cursor to the first record in the data source. | |
MoveLast | Moves the cursor to the last record in the data source. | |
MoveNext | Moves the cursor to the next record in the data source. | |
MovePrevious | Moves the cursor to the previous record in the data source. | |
SetBookmark | Sets the current cursor position to a supplied value. |