Data.DB.TIndexDefs.Items
[–] Properties | |
---|---|
Type: property | |
Visibility: public | |
Source: Data.DB.pas Data.DB.hpp
| |
Unit: Data.DB | |
Parent: TIndexDefs |
Delphi
property Items[Index: Integer]: TIndexDef read GetIndexDef write SetIndexDef; default;
C++
__property TIndexDef* Items[int Index] = {read=GetIndexDef, write=SetIndexDef/*, default*/};
Description
Lists the index definitions that describe each index of a dataset.
Use Items to access a particular index definition. Specify the index definition to access with the Index parameter. Index identifies the index definition's position in the list of index definitions, in the range 0 to Count - 1.
IdxFldsVar := Table1.IndexDefs.Items[i].Fields;
IdxFldsVar = Table1->IndexDefs->Items[i]->Fields;
See Also
Code Examples