Class GridViewCellEventArgsBase
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewCellEventArgsBase : EventArgs
Constructors
GridViewCellEventArgsBase(GridViewRowInfo, GridViewColumn)
Initializes a new instance of the Telerik.WinControls.UIViewCellEventArgs class.
Declaration
public GridViewCellEventArgsBase(GridViewRowInfo row, GridViewColumn column)
Parameters
GridViewRowInfo
row
The GridViewRowInfo related with the cell. |
GridViewColumn
column
The GridViewColumn related with the cell. |
Properties
Column
Gets the GridViewColumn related with the cell.
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
|
ColumnIndex
Gets a value indicating the column index of the cell that the event occurs for.
Declaration
public virtual int ColumnIndex { get; }
Property Value
System.Int32
The index of the column containing the cell that the event occurs for. |
Row
Gets the GridViewRowInfo related with the cell.
Declaration
public GridViewRowInfo Row { get; }
Property Value
GridViewRowInfo
|
RowIndex
Gets a value indicating the row index of the cell that the event occurs for.
Declaration
public virtual int RowIndex { get; }
Property Value
System.Int32
The index of the row containing the cell that the event occurs for. |
Methods
Equals(Object)
Compares the current instance of GridViewCellEventArgs to the one passed as parameter obj
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
The object to compare to the current instance. |
Returns
System.Boolean
|
Overrides
GetHashCode()
Serves as a hash function for a particular type.
Declaration
public override int GetHashCode()
Returns
System.Int32
A hash code for the current System.Object. |