Class ToolTipOpeningEventArgs
Provides data about the ToolTipOpening event.
Inherited Members
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class ToolTipOpeningEventArgs : GridCancelEventArgs
Constructors
ToolTipOpeningEventArgs(Object, GridColumn, String, Int32, Int32, ToolTipInfo, Point, Object)
Initializes a new instance of the ToolTipOpeningEventArgs class.
Declaration
public ToolTipOpeningEventArgs(object record, GridColumn column, string displayText, int rowIndex, int columnIndex, ToolTipInfo toolTipInfo, Point location, object originalSource)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | record | The object of record. |
| GridColumn | column | The object of GridColumn. |
| System.String | displayText | The display text value. |
| System.Int32 | rowIndex | The row index of the cell. |
| System.Int32 | columnIndex | The column index of the cell. |
| ToolTipInfo | toolTipInfo | The ToolTipInfo of the cell. |
| System.Drawing.Point | location | The location of the ToolTipOption. |
| System.Object | originalSource | The source of the event. |
Properties
Column
Gets a value indicates GridColumn of the cell.
Declaration
public GridColumn Column { get; }
Property Value
| Type |
|---|
| GridColumn |
ColumnIndex
Gets the column index of the cell.
Declaration
public int ColumnIndex { get; }
Property Value
| Type |
|---|
| System.Int32 |
DisplayText
Gets the display text value of the cell.
Declaration
public string DisplayText { get; }
Property Value
| Type |
|---|
| System.String |
Location
Gets or sets the location of the ToolTipOption.
Declaration
public Point Location { get; set; }
Property Value
| Type |
|---|
| System.Drawing.Point |
Record
Gets the object of record.
Declaration
public object Record { get; }
Property Value
| Type |
|---|
| System.Object |
RowIndex
Gets the row index of the cell.
Declaration
public int RowIndex { get; }
Property Value
| Type |
|---|
| System.Int32 |
ToolTipInfo
Gets or sets the ToolTipInfo of the cell.
Declaration
public ToolTipInfo ToolTipInfo { get; set; }
Property Value
| Type |
|---|
| ToolTipInfo |