FMX.Grid.TGridModel.TColumnIndexes

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

Delphi

    TColumnIndexes = record
      Column: TColumn;
      FromIndex, ToIndex: Integer;
    end;

C++

struct DECLSPEC_DRECORD TColumnIndexes
{
public:
    TColumn* Column;
    int FromIndex;
    int ToIndex;
};

プロパティ

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


説明

列の移動に必要な情報を表します:以前の列番号および、その隣の列番号です。

関連項目