DataGridCellInfo
Class
Defines the abstraction of a cell within a RadDataGrid row. A grid cell is generally the intersection of a grid row and grid column.
Definition
Namespace:Telerik.Maui.Controls.DataGrid
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class DataGridCellInfo
Inheritance: objectDataGridCellInfo
Constructors
Initializes a new instance of the DataGridCellInfo class.
C#
public DataGridCellInfo(object item, DataGridColumn column)
The item.
columnDataGridColumnThe column.
Properties
Gets or sets the DataGridColumn instance associated with the cell.
C#
public DataGridColumn Column { get; set; }
Gets or sets the data item that represents the grid row.
C#
public object Item { get; set; }
Gets the current value represented by the corresponding grid cell. This is a shortcut to the GetValueForInstance(object) method.
C#
public object Value { get; }
Methods
Returns a hash code for this instance.
C#
public override int GetHashCode()
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
Overrides: