PocketPlanner Programmer's Guide

CustomDraw Delegate

See Also

Represents methods that will handle the Draw event.

Namespace: MindFusion.Scheduling.Compact
Assembly: PocketPlanner

 Syntax

C#

public delegate void CustomDraw (
    Object sender,
    CustomDrawArgs e
)

Visual Basic

Public Delegate Sub CustomDraw ( _
    sender As Object, _
    e As CustomDrawArgs _
)

 Parameters

sender
The source of the event.
e
CustomDrawArgs that contains the event data.

 See Also