Class GridCellCancelEventArgs
Provides row and column coordinates for cancelable events associated with a specific cell.
Inheritance
System.Object
GridCellCancelEventArgs
Inherited Members
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public class GridCellCancelEventArgs : SyncfusionCancelEventArgs
Remarks
No events use this class directly but it is used as a base class for several other events related to a specific cell.
Constructors
GridCellCancelEventArgs(Int32, Int32)
Initializes a new instance of GridCellCancelEventArgs class.
Declaration
public GridCellCancelEventArgs(int rowIndex, int colIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | rowIndex | The row index. |
System.Int32 | colIndex | The column index. |
Properties
ColIndex
Gets the column index.
Declaration
[TraceProperty(true)]
public int ColIndex { get; }
Property Value
Type |
---|
System.Int32 |
RowIndex
Gets the row index.
Declaration
[TraceProperty(true)]
public int RowIndex { get; }
Property Value
Type |
---|
System.Int32 |