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