Class DataGridCellInfo
Defines the abstraction of a cell within a RadDataGrid row. A grid cell is generally the intersection of a grid row and grid column.
Inheritance
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DataGridCellInfo : Object
Constructors
DataGridCellInfo(Object, DataGridColumn)
Initializes a new instance of the DataGridCellInfo class.
Declaration
public DataGridCellInfo(object item, DataGridColumn column)
Parameters
System.Object
item
The item. |
DataGridColumn
column
The column. |
Properties
Column
Gets or sets the DataGridColumn instance associated with the cell.
Declaration
public DataGridColumn Column { get; set; }
Property Value
DataGridColumn
|
Item
Gets or sets the data item that represents the grid row.
Declaration
public object Item { get; set; }
Property Value
System.Object
|
Value
Gets the current value represented by the corresponding grid cell. This is a shortcut to the GetValueForInstance(Object) method.
Declaration
public object Value { get; }
Property Value
System.Object
|
Methods
Equals(Object)
Determines whether the specified System.Object is equal to this instance.
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
The System.Object to compare with this instance. |
Returns
System.Boolean
|
GetHashCode()
Returns a hash code for this instance.
Declaration
public override int GetHashCode()
Returns
System.Int32
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. |