Class DataGridCellEnteredEventArgs
Provides data for the CellEntered event.
Inheritance
System.Object
DataGridCellEnteredEventArgs
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridCellEnteredEventArgs : EventArgs
Constructors
DataGridCellEnteredEventArgs(RowColumnIndex, Object, DataGridColumn)
Initializes a new instance of the DataGridCellEnteredEventArgs class with the specified row column index and row data.
Declaration
public DataGridCellEnteredEventArgs(RowColumnIndex rowColIndex, object rowData, DataGridColumn column)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | rowColIndex | The row column index for the entered position. |
System.Object | rowData | The underlying data of the entered row. |
DataGridColumn | column | The corresponding data of the entered column. |
Properties
Column
Gets or sets the grid column of the cell.
Declaration
public DataGridColumn Column { get; }
Property Value
Type |
---|
DataGridColumn |
RowColumnIndex
Gets or sets the row and column index of the cell.
Declaration
public RowColumnIndex RowColumnIndex { get; }
Property Value
Type | Description |
---|---|
RowColumnIndex | An object that represents the row and column index at the entered position. |
RowData
Gets or sets the underlying object of the cell.
Declaration
public object RowData { get; }
Property Value
Type | Description |
---|---|
System.Object | An object that represents row data of the entered row. |