New to Telerik UI for WinFormsStart a free 30-day trial

Provides data for the ToolTipShowing event.

Definition

Namespace:Telerik.WinControls.UI.HeatMap

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class HeatMapToolTipEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsHeatMapToolTipEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

Initializes a new instance of the ToolTipTextNeededEventArgs class.

C#
public HeatMapToolTipEventArgs(RadToolTip toolTip, string toolTipText, int duration, Point location, CellIndex index)
Parameters:toolTipRadToolTip

The tool tip.

toolTipTextstring

The tool tip text.

durationint

The tool tip duration.

locationPoint

The tool tip location.

indexCellIndex

The cell index.

Properties

Gets or sets the ToolTip duration.

C#
public int Duration { get; set; }

Gets the cell index. Header cells come with -1 index. For row headers the RowIndex is -1. For column headers the ColumnIndex is -1.

C#
public CellIndex Index { get; }

Gets or sets the ToolTip location.

C#
public Point Location { get; set; }

Gets or sets the ToolTip text.

C#
public string Text { get; set; }

Gets the tool tip.

C#
public RadToolTip ToolTip { get; }