Fmx.Bind.DBLinks.TCreateColumnDescription

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TCreateColumnDescription = record
  private
    FField: TField;
    FHeader: string;
    FReadOnly: Boolean;
    FFieldName: string;
    FVisible: Boolean;
    FWidth: Integer;
    FStyleLookup: string;
  public
    constructor Create(AField: TField); overload;
    constructor Create(AColumn: TDBGridLinkColumn); overload;
    property Field: TField read FField;
    property Header: string read FHeader;
    property FieldName: string read FFieldName;
    property Visible: Boolean read FVisible;
    property Width: Integer read FWidth;
    property StyleLookup: string read FStyleLookup;
    property ReadOnly: Boolean read FReadOnly;
  end;

C++

struct DECLSPEC_DRECORD TCreateColumnDescription
{
private:
    Data::Db::TField* FField;
    System::UnicodeString FHeader;
    bool FReadOnly;
    System::UnicodeString FFieldName;
    bool FVisible;
    int FWidth;
    System::UnicodeString FStyleLookup;
public:
    __fastcall TCreateColumnDescription(Data::Db::TField* AField)/* overload */;
    __fastcall TCreateColumnDescription(TDBGridLinkColumn* AColumn)/* overload */;
    __property Data::Db::TField* Field = {read=FField};
    __property System::UnicodeString Header = {read=FHeader};
    __property System::UnicodeString FieldName = {read=FFieldName};
    __property bool Visible = {read=FVisible};
    __property int Width = {read=FWidth};
    __property System::UnicodeString StyleLookup = {read=FStyleLookup};
    __property bool ReadOnly = {read=FReadOnly};
    TCreateColumnDescription() {}
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
Fmx.Bind.DBLinks.pas
Fmx.Bind.DBLinks.hpp
Fmx.Bind.DBLinks Fmx.Bind.DBLinks

Beschreibung

Der Record TCreateColumnDescription definiert allgemeine Spalteninformationen für TBindDBStringGridColumnCreator.

TCreateColumnDescription enthält Informationen, wie Header, Feldname, Feld, Sichtbarkeit, Breite und Stil-Nachschlageobjekt.

Siehe auch