GridDataRowCell
The GridDataRowCell class represents an individual cell within a grid row, containing a value, display text, and metadata.
Properties
| Name | Description |
|---|---|
| Text | The textual representation of the cell value. |
| Column | The column metadata associated with the grid cell. |
| Name | The name of the grid column this cell belongs to. |
| Value | The value stored in the grid cell. |
Constructors
| Name | Description |
|---|---|
| GridDataRowCell() | Initializes a new instance of the GridDataRowCell class. |
| GridDataRowCell(value, name) | Initializes a new instance of the GridDataRowCell class with a specified value and column name. |
| GridDataRowCell(value, name, text, column) | Initializes a new instance of the GridDataRowCell class with a specified value, column name, display text, and column metadata. |