Class GridTappedEventsArgs
Provides data for the GridTapped event.
Namespace: Syncfusion.SfDataGrid
Assembly: Syncfusion.SfDataGrid.iOS.dll
Syntax
public class GridTappedEventsArgs : EventArgs
Constructors
GridTappedEventsArgs(RowColumnIndex, Object)
Initializes a new instance of the GridTappedEventsArgs class.
Declaration
public GridTappedEventsArgs(RowColumnIndex rowColIndex, object rowData)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | rowColIndex | The row column index for the tapped position. |
System.Object | rowData | The underlying data of the tapped row. |
Properties
RowColumnIndex
Gets the row column index at the tapped position.
Declaration
public RowColumnIndex RowColumnIndex { get; }
Property Value
Type | Description |
---|---|
RowColumnIndex | An object that represents the row and column index at the tapped position. |
RowData
Gets the row data of the tapped row.
Declaration
public object RowData { get; }
Property Value
Type | Description |
---|---|
System.Object | An object that represents row data of the tapped row. |