Class GridCellClickEventArgs
Represents a class which holds the properties of Grid CellClick Event.
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)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.CellGrid.Helpers
Assembly: Syncfusion.Spreadsheet.Windows.dll
Syntax
public class GridCellClickEventArgs : GridCancelEventArgs
Constructors
GridCellClickEventArgs(Int32, Int32, Object)
Initializes a new instance of the GridCellClickEventArgs class.
Declaration
public GridCellClickEventArgs(int row, int col, object args)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | row | Row Index. |
System.Int32 | col | Column Index. |
System.Object | args | Argument of Event. |
Properties
ColumnIndex
Gets the column index of the cell.
Declaration
public int ColumnIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Column index |
OriginalEventArgs
Gets the event argument the cell click.
Declaration
public object OriginalEventArgs { get; }
Property Value
Type | Description |
---|---|
System.Object | Event argument. |
RowIndex
Gets the row index of the cell.
Declaration
public int RowIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Row index |