Data.DB.TFields.GetField

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetField(Index: Integer): TField;

C++

TField* __fastcall GetField(int Index);

Properties

Type Visibility Source Unit Parent
function protected
Data.DB.pas
Data.DB.hpp
Data.DB TFields

Description

Returns a reference to a specific field.

The GetField method is used to return a reference to a specific field in the list. The Index parameter specifies the index of the field in the list (0 is the index of the first field, 1 is the index of the second field, and so on). GetField is the protected getter implementation for the Fields property.

See Also