Class ToolTipOpenedEventArgs
Provides data about the ToolTipOpened event.
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class ToolTipOpenedEventArgs : GridEventArgs
Constructors
ToolTipOpenedEventArgs(Object, GridColumn, String, Int32, Int32, ToolTipInfo, Point, Object)
Initializes a new instance of the ToolTipOpenedEventArgs class.
Declaration
public ToolTipOpenedEventArgs(object record, GridColumn column, string displayText, int rowIndex, int columnIndex, ToolTipInfo toolTipInfo, Point location, object originalSender)
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 | originalSender | 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 the location of the ToolTipOption.
Declaration
public Point Location { get; }
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 the ToolTipInfo of the cell.
Declaration
public ToolTipInfo ToolTipInfo { get; }
Property Value
| Type |
|---|
| ToolTipInfo |