Wimark.Controls Class Library  

DrawDateEventHandler Delegate

Represents the method that will handle the DrawDate event of month calendar and date time picker controls.

[Visual Basic]
<Serializable>
Public Delegate Sub DrawDateEventHandler( _
   ByVal sender As Object, _
   ByVal args As DrawDateEventArgs _
)
[C#]
[Serializable]
public delegate void DrawDateEventHandler(
   object sender,
   DrawDateEventArgs args
);
[C++]
[Serializable]
public __gc __delegate void DrawDateEventHandler(
   Object* sender,
   DrawDateEventArgs* args
);

Parameters [Visual Basic, C#, C++]

The declaration of your event handler must have the same parameters as the DrawDateEventHandler delegate declaration.

sender
The source of the event.
args
A DrawDateEventArgs that contains the event data.

Requirements

Namespace: Wimark.Controls

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows .NET Server family

Assembly: Wimark.Controls (in Wimark.Controls.dll)

See Also

Wimark.Controls Namespace | DrawDateEventArgs