IDmDataSource.Item

Fore Syntax

Item(Record: Integer; Field: Integer): Variant;

Fore.NET Syntax

Item[Record: integer; Field: integer]: object;

Parameters

Record. Record index.

Field. Field index.

Description

The Item property returns value of the specified field from the data source.

Comments

Records and fields indexing is continuous and starts with zero. The number of fields in the data source is returned by the IDmDataSource.FieldCount property, the number of records is returned by the IDmDataSource.RecordCount property.

NOTE. On working with the table data source, Item always returns Null.

Fore and Fore.NET Examples

The property use is given in the example for IDmClusteringDetails.CategoriesCount.

See also:

IDmDataSource