Class GridViewCellInfo
Class that describes GridViewCell as data object. Used to get the appropriate GridViewCell (UI container) in cases when it is recycled.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class GridViewCellInfo : Object
Constructors
GridViewCellInfo(Object, GridViewColumn)
Initializes a new instance of the GridViewCellInfo class.
Declaration
public GridViewCellInfo(object item, GridViewColumn column)
Parameters
System.Object
item
The item. |
GridViewColumn
column
The column. |
GridViewCellInfo(Object, GridViewColumn, GridViewDataControl)
Initializes a new instance of the GridViewCellInfo class.
Declaration
public GridViewCellInfo(object item, GridViewColumn column, GridViewDataControl owner)
Parameters
System.Object
item
The item. |
GridViewColumn
column
The column. |
GridViewDataControl
owner
The owner. |
GridViewCellInfo(GridViewCell)
Initializes a new instance of the GridViewCellInfo class.
Declaration
public GridViewCellInfo(GridViewCell cell)
Parameters
GridViewCell
cell
The cell. |
Properties
Column
Gets the column.
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
The column. |
Item
Gets the item.
Declaration
public object Item { get; }
Property Value
System.Object
The item. |
Methods
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
|
Returns
System.Boolean
|
GetHashCode()
Declaration
public override int GetHashCode()
Returns
System.Int32
|
Operators
Equality(GridViewCellInfo, GridViewCellInfo)
Implements the operator ==.
Declaration
public static bool operator ==(GridViewCellInfo leftCellInfo, GridViewCellInfo rightCellInfo)
Parameters
GridViewCellInfo
leftCellInfo
Left cell info. |
GridViewCellInfo
rightCellInfo
Right cell info. |
Returns
System.Boolean
The result of the operator. |
Inequality(GridViewCellInfo, GridViewCellInfo)
Implements the operator !=.
Declaration
public static bool operator !=(GridViewCellInfo leftCellInfo, GridViewCellInfo rightCellInfo)
Parameters
GridViewCellInfo
leftCellInfo
Left cell info. |
GridViewCellInfo
rightCellInfo
Right cell info. |
Returns
System.Boolean
The result of the operator. |