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.
Fields and properties
| Name | Type | Description |
|---|---|---|
Column |
Integer |
Zero-based column index of the cell. |
Row |
Integer |
Zero-based row index of the cell. |
ToString |
string |
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 . |