'Declaration
Public Event NodeRendering As EventHandler(Of RenderNodeEventArgs)
'Usage
Dim instance As C1TreeMap Dim handler As EventHandler(Of RenderNodeEventArgs) AddHandler instance.NodeRendering, handler
public event EventHandler<RenderNodeEventArgs> NodeRendering
public: event EventHandler<RenderNodeEventArgs^>^ NodeRendering
Event Data
The event handler receives an argument of type RenderNodeEventArgs containing data related to this event. The following RenderNodeEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Depth | Gets the depth of the node |
Engine | Gets the rendering engine. (Inherited from C1.Chart.BaseRenderEventArgs) |
Height | Gets the height of the node rectangle. |
IsTitle | Gets if the node is a Title node or not |
Item | Gets the data item of the node. |
Width | Gets the width of the node rectangle. |
X | Gets the top let x-coordinate of the node rectangle. |
Y | Gets the top let y-coordinate of the node rectangle. |
See Also