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