Class GridCellClickEventArgs
Provides data about the CellClick event.
Inherited Members
Namespace: Syncfusion.Windows.Controls.Grid
Assembly: Syncfusion.Grid.Wpf.dll
Syntax
public class GridCellClickEventArgs : SyncfusionRoutedEventArgs
Remarks
GridCellClickEventArgs is a custom event argument class used by the CellClick event when the user clicks inside a cell.
Constructors
GridCellClickEventArgs(Int32, Int32, Int32, RoutedEvent, Object)
Initializes a new GridCellClickEventArgs.
Declaration
public GridCellClickEventArgs(int rowIndex, int columnIndex, int clicks, RoutedEvent routedEvent, object source)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | rowIndex | Row index. |
System.Int32 | columnIndex | Column index. |
System.Int32 | clicks | Number of clicks. |
System.Windows.RoutedEvent | routedEvent | Routed event. |
System.Object | source | Event source. |
Properties
ClickCount
Number of clicks in the cell.
Declaration
public int ClickCount { get; }
Property Value
Type |
---|
System.Int32 |
ColumnIndex
Gets the index of the column.
Declaration
[TraceProperty(true)]
public int ColumnIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the column. |
RowIndex
Gets the index of the row.
Declaration
[TraceProperty(true)]
public int RowIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the row. |
See Also
Syncfusion.Windows.Controls.Grid.GridControlBase.RaiseGridCellClick(System.Int32,System.Int32)