TTMSFNCDataGridCellCoord Record
Identifies a single grid cell by its zero-based column and row index.
API unit family: TMSFNCDataGridCore
Syntax
TTMSFNCDataGridCellCoord = record
Remarks
Use the MakeCell(AColumn, ARow) helper to construct an instance. Fixed header cells begin at Column 0 / Row 0. Column and Row are always zero-based.
Properties
| Name | Description |
|---|---|
| Column | Zero-based column index of the cell. |
| Row | Zero-based row index of the cell. |
| ToString | Returns the cell coordinate as a 'Column,Row' formatted string. |
Methods
| Name | Description |
|---|---|
| FromString | Reconstructs a cell coordinate from a string previously produced by ToString. |
| IsEqualTo | Returns True when both Column and Row match . |