Class GridActivateToolTipEventArgs
Provides data for the row and column in which the tooltip occurs and for the ActivateToolTip event.
Inherited Members
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public sealed class GridActivateToolTipEventArgs : SyncfusionCancelEventArgs
Constructors
GridActivateToolTipEventArgs(Int32, Int32, GridStyleInfo)
Initializes the new instances for the GridActivateToolTipEventArgs class.
Declaration
public GridActivateToolTipEventArgs(int rowIndex, int colIndex, GridStyleInfo style)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | rowIndex | The row index. |
System.Int32 | colIndex | The column index. |
GridStyleInfo | style | The GridStyleInfo object that holds cell information. |
Properties
ColIndex
Gets or sets the column index in which the tooltip needs to be shown.
Declaration
[TraceProperty(true)]
public int ColIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
RowIndex
Gets or sets the row index in which the tooltip needs to be shown.
Declaration
[TraceProperty(true)]
public int RowIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
Style
Gets or sets the GridStyleInfo object that holds cell information.
Declaration
[TraceProperty(true)]
public GridStyleInfo Style { get; set; }
Property Value
Type |
---|
GridStyleInfo |