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

Provides data for the ToolTipShowing event.

Definition

Namespace:Telerik.WinControls.UI.TreeMap

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class TreeMapToolTipEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsTreeMapToolTipEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

Initializes a new instance of the ToolTipTextNeededEventArgs class.

C#
public TreeMapToolTipEventArgs(RadToolTip toolTip, string toolTipText, int duration, Point location, TreeMapDataItem item)
Parameters:toolTipRadToolTip

The tool tip.

toolTipTextstring

The tool tip text.

durationint

The tool tip duration.

locationPoint

The tool tip location.

itemTreeMapDataItem

The data item or group.

Properties

Gets or sets the ToolTip duration.

C#
public int Duration { get; set; }

Gets the data item or group. If the item is group item can be casted to TreeMapDataItemGroup.

C#
public TreeMapDataItem Item { 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; }