Data.DB.TFieldDef.FieldNo

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TFieldDef

Delphi

property FieldNo: Integer read GetFieldNo write FFieldNo stored False;

C++

__property int FieldNo = {read=GetFieldNo, write=FFieldNo, stored=false, nodefault};

Description

Identifies the physical field number used to reference the field.

Use FieldNo to find out where the physical field the field definition references is in the set of fields in the table. For example, if the value of FieldNo is 2, then the field is the second field in the underlying database table.

When adding field definitions to a dataset, set FieldNo to specify the location at which to create the field.

See Also