Class GridCellClickEventArgs
Represents a class which holds the properties of Grid CellClick Event.
Inherited Members
Namespace: Syncfusion.UI.Xaml.CellGrid.Helpers
Assembly: Syncfusion.SfCellGrid.WPF.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 |