Data.Bind.ObjectScope.TBindSourceAdapterFieldType
Delphi
TBindSourceAdapterFieldType = record
private
FTypeKind: TTypeKind;
FTypeName: string;
public
constructor Create(const ATypeName: string; ATypeKind: TTypeKind);
property TypeKind: TTypeKind read FTypeKind;
property TypeName: string read FTypeName;
end;
C++
struct DECLSPEC_DRECORD TBindSourceAdapterFieldType
{
private:
System::TTypeKind FTypeKind;
System::UnicodeString FTypeName;
public:
__fastcall TBindSourceAdapterFieldType(const System::UnicodeString ATypeName, System::TTypeKind ATypeKind);
__property System::TTypeKind TypeKind = {read=FTypeKind};
__property System::UnicodeString TypeName = {read=FTypeName};
TBindSourceAdapterFieldType() {}
};
Eigenschaften
Typ | Sichtbarkeit | Quelle | Unit | Übergeordnet |
---|---|---|---|---|
record struct |
public | Data.Bind.ObjectScope.pas Data.Bind.ObjectScope.hpp |
Data.Bind.ObjectScope | Data.Bind.ObjectScope |
Beschreibung
Ist ein Record, der die Typinformationen (RTTI) für ein Adapterfeld enthält.