Class TooltipDrawingEventArgs
Provides data for the TooltipDrawing event in the TreeMap control. Contains information required to customize the appearance and content of tooltips.
Inheritance
System.Object
TooltipDrawingEventArgs
Namespace: Syncfusion.Windows.Forms.TreeMap
Assembly: Syncfusion.TreeMap.Windows.dll
Syntax
public class TooltipDrawingEventArgs : Object
Constructors
TooltipDrawingEventArgs()
Declaration
public TooltipDrawingEventArgs()
Properties
Data
Gets or sets the data associated with the TreeMap item for which the tooltip is being drawn.
Declaration
public object Data { get; set; }
Property Value
| Type |
|---|
| System.Object |
Graphics
Gets or sets the graphics context used for drawing the tooltip in TooltipDrawingEventArgs.
Declaration
public Graphics Graphics { get; set; }
Property Value
| Type |
|---|
| System.Drawing.Graphics |
Handled
Gets or sets a value indicating whether the tooltip drawing has been handled in TooltipDrawingEventArgs.
Declaration
public bool Handled { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
Remarks
If set to true, the default tooltip rendering will be skipped.
X
Gets or sets the X-coordinate of the tooltip's position in TooltipDrawingEventArgs.
Declaration
public double X { get; set; }
Property Value
| Type |
|---|
| System.Double |
Y
Gets or sets the Y-coordinate of the tooltip's position in TooltipDrawingEventArgs.
Declaration
public double Y { get; set; }
Property Value
| Type |
|---|
| System.Double |