Data.Bind.Grid.TLinkGridColumnExpressionPair
Delphi
  TLinkGridColumnExpressionPair = record
  private
    FControlExpression: string;
    FSourceExpression: string;
    FCustom: Boolean;
  public
    constructor Create(const AControlExpression, ASourceExpression: string; ACustom: Boolean);
    property ControlExpression: string read FControlExpression;
    property SourceExpression: string read FSourceExpression;
    property Custom: Boolean read FCustom;
  end;
C++
struct DECLSPEC_DRECORD TLinkGridColumnExpressionPair
{
private:
    System::UnicodeString FControlExpression;
    System::UnicodeString FSourceExpression;
    bool FCustom;
public:
    __fastcall TLinkGridColumnExpressionPair(const System::UnicodeString AControlExpression, const System::UnicodeString ASourceExpression, bool ACustom);
    __property System::UnicodeString ControlExpression = {read=FControlExpression};
    __property System::UnicodeString SourceExpression = {read=FSourceExpression};
    __property bool Custom = {read=FCustom};
    TLinkGridColumnExpressionPair() {}
};
Eigenschaften
| Typ | Sichtbarkeit | Quelle | Unit | Übergeordnet | 
|---|---|---|---|---|
| record struct | public | Data.Bind.Grid.pas Data.Bind.Grid.hpp | Data.Bind.Grid | Data.Bind.Grid | 
Beschreibung
Beschreibt zwei Ausdrucks-Strings, mit denen Daten zwischen dem Gittersteuerelement und einer Datenquelle verschoben werden.