FMX.Grid.TStringGrid.Cells

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

Delphi

property Cells[const ACol, ARow: Integer]: string read GetCells write SetCells;

C++

__property System::UnicodeString Cells[const int ACol][const int ARow] = {read=GetCells, write=SetCells};

プロパティ

種類 可視性 ソース ユニット
property public
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TStringGrid

説明

グリッド内の各セルの文字列リストを表示します。

Cells を使用すると、特定のセルにある文字列にアクセスすることができます。 ACol はセルの列座標、ARow はセルの行座標です。 最初の行は、行 0、最初の列は、列 0 となります。

ColumnCount および RowCount のプロパティ値は、文字列の配列のサイズを定義しています。

関連項目