Class DataGridCellHoveredEventArgs
Provides data for the CellHovered event.
Inheritance
System.Object
DataGridCellHoveredEventArgs
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridCellHoveredEventArgs : EventArgs
Constructors
DataGridCellHoveredEventArgs(RowColumnIndex, Object, DataGridColumn, Nullable<Point>, Object, Nullable<CellType>)
Declaration
public DataGridCellHoveredEventArgs(RowColumnIndex rowColIndex, object rowData, DataGridColumn column, Nullable<Point> point, object cellValue, Nullable<CellType> cellType)
Parameters
| Type | Name | Description |
|---|---|---|
| RowColumnIndex | rowColIndex | The row column index for the hovered position. |
| System.Object | rowData | The underlying data of the hovered row. |
| DataGridColumn | column | The corresponding data of the hovered column. |
| System.Nullable<Microsoft.Maui.Graphics.Point> | point | The corresponding point of the hovered column. |
| System.Object | cellValue | The corresponding cellValue of the hovered column. |
| System.Nullable<CellType> | cellType | The corresponding cellType of the hovered column. |
Properties
CellType
Gets the type of the cell, if specified.
Declaration
public Nullable<CellType> CellType { get; }
Property Value
| Type |
|---|
| System.Nullable<CellType> |
CellValue
Gets the value contained in the cell.
Declaration
public object CellValue { get; }
Property Value
| Type |
|---|
| System.Object |
Column
Gets or sets the grid column of the cell.
Declaration
public DataGridColumn Column { get; }
Property Value
| Type |
|---|
| DataGridColumn |
Point
Gets or sets the hovering position of the cell.
Declaration
public Nullable<Point> Point { get; }
Property Value
| Type |
|---|
| System.Nullable<Microsoft.Maui.Graphics.Point> |
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 hovered 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 hovered row. |