Class
TreeMapToolTipEventArgs

Provides data for the ToolTipShowing event.

Definition

Namespace:Telerik.WinControls.UI.TreeMap

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public class TreeMapToolTipEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsTreeMapToolTipEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

TreeMapToolTipEventArgs(RadToolTip, string, int, Point, TreeMapDataItem)

Initializes a new instance of the ToolTipTextNeededEventArgs class.

Declaration

cs-api-definition
public TreeMapToolTipEventArgs(RadToolTip toolTip, string toolTipText, int duration, Point location, TreeMapDataItem item)

Parameters

toolTip

RadToolTip

The tool tip.

toolTipText

string

The tool tip text.

duration

int

The tool tip duration.

location

Point

The tool tip location.

item

TreeMapDataItem

The data item or group.

Properties

Duration

Gets or sets the ToolTip duration.

Declaration

cs-api-definition
public int Duration { get; set; }

Property Value

int

Item

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

Declaration

cs-api-definition
public TreeMapDataItem Item { get; }

Property Value

TreeMapDataItem

Location

Gets or sets the ToolTip location.

Declaration

cs-api-definition
public Point Location { get; set; }

Property Value

Point

Text

Gets or sets the ToolTip text.

Declaration

cs-api-definition
public string Text { get; set; }

Property Value

string

ToolTip

Gets the tool tip.

Declaration

cs-api-definition
public RadToolTip ToolTip { get; }

Property Value

RadToolTip