Class GridCellButtonClickEventArgs
Provides data about the CellButtonClick event that is raised when the user clicks on a cell button element inside a cell.
Inherited Members
Namespace: Syncfusion.Windows.Controls.Grid
Assembly: Syncfusion.Grid.Wpf.dll
Syntax
public class GridCellButtonClickEventArgs : SyncfusionRoutedEventArgs
Constructors
GridCellButtonClickEventArgs(Int32, Int32, RoutedEvent, Object)
Initializes a new GridCellButtonClickEventArgs.
Declaration
public GridCellButtonClickEventArgs(int rowIndex, int columnIndex, RoutedEvent routedEvent, object source)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | rowIndex | Row index. |
System.Int32 | columnIndex | Column index. |
System.Windows.RoutedEvent | routedEvent | Routed event. |
System.Object | source | Event source. |
Properties
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. |