TcxCustomDateNavigator.OnCustomDrawDayNumber Event
Occurs before a day in the Date Navigator control is drawn.
#Declaration
property OnCustomDrawDayNumber: TcxSchedulerDateNavigatorCustomDrawDayNumberEvent read; write;
#Remarks
Implement the OnCustomDrawDayNumber
event handler to custom draw dates in the Date Navigator control.
Sender
specifies the Date Navigator control.
ACanvas
specifies the drawing surface.
AViewInfo
returns ViewInfo information required to render the processed date cell.
ADone
specifies if built-in draw routines are executed. Set ADone
to True
to prevent default code execution.
Note
if the Transparent
property of the proprietary AView
object is set to True
within an OnOn
event handlers will do transparent painting, if implemented. So, there is no need to set the Transparent
property of the appropriate AView
objects to True
respectively within OnOn
event handlers. In any case, if you need to completely repaint shapes specified for OnOn
, just set the Transparent
property of the appropriate AView
objects to False
within these event handlers.