Class DataGridCellDoubleTappedEventArgs
Provides data for the CellDoubleTapped event.
Inheritance
System.Object
DataGridCellDoubleTappedEventArgs
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridCellDoubleTappedEventArgs : EventArgs
Constructors
DataGridCellDoubleTappedEventArgs(RowColumnIndex, Object, DataGridColumn)
Initializes a new instance of the DataGridCellDoubleTappedEventArgs class with the specified row column index and row data.
Declaration
public DataGridCellDoubleTappedEventArgs(RowColumnIndex rowColIndex, object rowData, DataGridColumn column)
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. |
DataGridColumn | column | The corresponding data of the tapped column. |
Properties
Column
Gets the corresponding column of a cell.
Declaration
public DataGridColumn Column { get; }
Property Value
Type |
---|
DataGridColumn |
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. |