Data.Bind.Grid.TLinkGridColumnExpressionPair

提供: RAD Studio API Documentation
移動先: 案内検索

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() {}
};

プロパティ

種類 可視性 ソース ユニット
record
struct
public
Data.Bind.Grid.pas
Data.Bind.Grid.hpp
Data.Bind.Grid Data.Bind.Grid

説明

グリッド コントロールとデータ ソースの間でデータを移動するために使われる 2 つの式文字列を表します。


関連項目