Search
Calendar.ItemDrawing Event
See Also
 






Raised to allow custom drawing of calendar items before the default rendering done by the control.

Namespace: MindFusion.Scheduling
Assembly: MindFusion.Scheduling

 Syntax

C#  Copy Code

public event EventHandler<DrawEventArgs> ItemDrawing

Visual Basic  Copy Code

Public Event ItemDrawing As EventHandler(Of DrawEventArgs)

 Event Data

ItemDrawing event handlers receive an argument of type DateEventArgs.

 Remarks

The ItemDrawing event is raised only for items. More specifically, the ItemDrawing event will be raised only when CustomDraw is set to one of the following CustomDrawElements values: CalendarItem or TimetableItem.

 See Also