Data.DB.TField.GetClassDesc
Delphi
function GetClassDesc: string; virtual;
C++
virtual System::UnicodeString __fastcall GetClassDesc();
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | protected | Data.DB.pas Data.DB.hpp |
Data.DB | TField |
Description
Returns the abbreviated class name of the field.
The GetClassDesc method returns the abbreviated class name of the field component. The abbreviated class name is built by stripping the leading 'T' from the class name and removing the trailing word 'FIELD', except in the case of TField, where that would leave an empty string. Thus, the abbreviated class name of TField is "FIELD", the abbreviated class name of TVarBytesField is "VarBytes", and so on.