FMX.Grid.TStringGrid.Cells
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};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | FMX.Grid.pas FMX.Grid.hpp |
FMX.Grid | TStringGrid |
Description
Lists the strings for each cell in the grid.
Use Cells to access the string within a particular cell. ACol
is the column coordinate of the cell, and ARow
is the row coordinate of the cell. The first row is row zero, and the first column is column zero.
The ColumnCount and RowCount property values define the size of the array of strings.