ClassDataGridCellInfo
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:
public class DataGridCellInfo
Inheritance: objectDataGridCellInfo
Constructors
DataGridCellInfo(object, DataGridColumn)
Initializes a new instance of the DataGridCellInfo class.
Declaration
public DataGridCellInfo(object item, DataGridColumn column)
Parameters
item
The item.
column
The column.
Properties
Column
Gets or sets the DataGridColumn instance associated with the cell.
Declaration
public DataGridColumn Column { get; set; }
Property Value
Item
Gets or sets the data item that represents the grid row.
Value
Gets the current value represented by the corresponding grid cell. This is a shortcut to the GetValueForInstance(object) method.
Methods
Equals(object)
Determines whether the specified object is equal to this instance.
GetHashCode()
Returns a hash code for this instance.
Declaration
public override int GetHashCode()
Returns
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
Overrides