Class DataGridCellToolTipOpeningEventArgs
Provides data for the CellToolTipOpening event.
Inheritance
System.Object
DataGridCellToolTipOpeningEventArgs
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridCellToolTipOpeningEventArgs : CancelEventArgs
Constructors
DataGridCellToolTipOpeningEventArgs(RowColumnIndex, Object, DataGridColumn, String)
Initializes a new instance of the
Declaration
public DataGridCellToolTipOpeningEventArgs(RowColumnIndex rowColIndex, object rowData, DataGridColumn column, string toolTipText)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | rowColIndex | The row column index for the cell. |
System.Object | rowData | The underlying data of the row. |
DataGridColumn | column | The corresponding column of the cell. |
System.String | toolTipText | The tooltip text to be displayed. |
Properties
Column
Gets the corresponding column of the cell for which the tooltip is being opened.
Declaration
public DataGridColumn Column { get; }
Property Value
Type |
---|
DataGridColumn |
RowColumnIndex
Gets the row column index of the cell for which the tooltip is being opened.
Declaration
public RowColumnIndex RowColumnIndex { get; }
Property Value
Type | Description |
---|---|
RowColumnIndex | An object that represents the row and column index of the cell. |
RowData
Gets the row data of the cell for which the tooltip is being opened.
Declaration
public object RowData { get; }
Property Value
Type | Description |
---|---|
System.Object | An object that represents row data of the cell. |
ToolTipText
Gets or sets the tooltip text to be displayed for the cell.
Declaration
public string ToolTipText { get; set; }
Property Value
Type | Description |
---|---|
System.String | The tooltip text content. |