[]
Represents a data enumerator in a C1FlexReport. Provides access to data used in reports.
public abstract class DataHandler : IDisposable
| Name | Description |
|---|---|
| DataHandler() |
| Name | Description |
|---|---|
| m_Fields |
| Name | Description |
|---|---|
| Count | Gets the count of records in the data handler. |
| Empty | Indicates whether data set managed by this DataHandler has no records. |
| Fields | Gets the DataFieldCollection containing the list of data source fields. |
| Name | Description |
|---|---|
| BOF() | Returns true if the cursor is pointing at the first record in the data source. |
| Dispose() | Disposes this DataHandler object. |
| EOF() | Returns true if the cursor is pointing past the last record in the data source. |
| ~DataHandler() | |
| GetBookmark() | Returns the current cursor position. |
| 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(int) | Sets the current cursor position to supplied value. |