Delegate TreeMap.LeafItemDrawingEventHandler
Represents the method that will handle the LeafItemDrawing event. Provides data required for custom rendering of individual leaf items in the TreeMap.
Assembly: Syncfusion.TreeMap.Windows.dll
public delegate void LeafItemDrawingEventHandler(object sender, LeafItemDrawingEventArgs e);
Parameters
| Type |
Name |
Description |
| System.Object |
sender |
The source of the event.
|
| LeafItemDrawingEventArgs |
e |
A LeafItemDrawingEventArgs object that contains the drawing data for the leaf item.
|
Constructors
Declaration
public LeafItemDrawingEventHandler(object object, IntPtr method)
Parameters
| Type |
Name |
Description |
| System.Object |
object |
|
| System.IntPtr |
method |
|
Methods
Declaration
public virtual IAsyncResult BeginInvoke(object sender, LeafItemDrawingEventArgs e, AsyncCallback callback, object object)
Parameters
| Type |
Name |
Description |
| System.Object |
sender |
|
| LeafItemDrawingEventArgs |
e |
|
| System.AsyncCallback |
callback |
|
| System.Object |
object |
|
Returns
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
| Type |
Name |
Description |
| System.IAsyncResult |
result |
|
Declaration
public virtual void Invoke(object sender, LeafItemDrawingEventArgs e)
Parameters