Class GridCellHandledEventArgs
Holds row and column coordinates for events that can be marked as handled and are associated with a specific cell.
Inheritance
System.Object
System.EventArgs
GridCellHandledEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public class GridCellHandledEventArgs : SyncfusionHandledEventArgs
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
GridCellHandledEventArgs(Int32, Int32)
Initializes a new instances ofGridCellHandledEventArgs class.
Declaration
public GridCellHandledEventArgs(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 |