Class TreeMapToolTipEventArgs
Provides data for the Tool
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 Tool
Declaration
public TreeMapToolTipEventArgs(RadToolTip toolTip, string toolTipText, int duration, Point location, TreeMapDataItem item)
Parameters
Rad The tool tip. |
System. The tool tip text. |
System. The tool tip duration. |
System. The tool tip location. |
Tree The data item or group. |
Properties
Duration
Gets or sets the ToolTip duration.
Declaration
public int Duration { get; set; }
Property Value
System.
|
Item
Gets the data item or group.
If the item is group item can be casted to Tree
Declaration
public TreeMapDataItem Item { get; }
Property Value
Location
Gets or sets the ToolTip location.
Declaration
public Point Location { get; set; }
Property Value
System.
|
Text
Gets or sets the ToolTip text.
Declaration
public string Text { get; set; }
Property Value
System.
|