Data.DB.TFieldDef.FieldNo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property FieldNo: Integer read GetFieldNo write FFieldNo stored False;

C++

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

Properties

Type Visibility Source Unit Parent
property public
Data.DB.pas
Data.DB.hpp
Data.DB TFieldDef

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