Class TreeMapToolTipEventArgs
Provides data for the ToolTipShowing event.
Inheritance
Namespace: Telerik.WinControls.UI.TreeMap
Assembly: Telerik.WinControls.UI.dll
Syntax
public class TreeMapToolTipEventArgs : CancelEventArgs
Constructors
TreeMapToolTipEventArgs(RadToolTip, String, Int32, Point, TreeMapDataItem)
Initializes a new instance of the ToolTipTextNeededEventArgs class.
Declaration
public TreeMapToolTipEventArgs(RadToolTip toolTip, string toolTipText, int duration, Point location, TreeMapDataItem item)
Parameters
RadToolTip
toolTip
The tool tip. |
System.String
toolTipText
The tool tip text. |
System.Int32
duration
The tool tip duration. |
System.Drawing.Point
location
The tool tip location. |
TreeMapDataItem
item
The data item or group. |
Properties
Duration
Gets or sets the ToolTip duration.
Declaration
public int Duration { get; set; }
Property Value
System.Int32
|
Item
Gets the data item or group. If the item is group item can be casted to TreeMapDataItemGroup.
Declaration
public TreeMapDataItem Item { get; }
Property Value
TreeMapDataItem
|
Location
Gets or sets the ToolTip location.
Declaration
public Point Location { get; set; }
Property Value
System.Drawing.Point
|
Text
Gets or sets the ToolTip text.
Declaration
public string Text { get; set; }
Property Value
System.String
|