Skip to main content

SchedulerControl.CustomizeTimeRulerFormShowing Event

Occurs before the Time Ruler form is invoked to customize time ruler settings.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v14.2.dll

#Declaration

public event CustomizeTimeRulerFormEventHandler CustomizeTimeRulerFormShowing

#Event Data

The CustomizeTimeRulerFormShowing event's handler receives an argument of the CustomizeTimeRulerFormEventArgs type. The following properties provide information specific to this event:

Property Description
AllowResize Gets or sets a value indicating whether end-users are allowed to resize the form. Inherited from FormShowingEventArgs.
Cancel Gets or sets the value indicating whether to cancel invoking the form. Inherited from FormShowingEventArgs.
Form Gets or sets the form to be invoked. Inherited from FormShowingEventArgs.
SizeToContent Obsolete. This API is obsolete now. Inherited from FormShowingEventArgs.
TimeRuler Gets the time ruler that is customized via the Time Ruler dialog.
ViewModel Gets or sets the View Model for the form which will be invoked. Inherited from FormShowingEventArgs.

#Remarks

Handle the CustomizeTimeRulerFormShowing event to perform any actions before the Time Ruler form is shown. For instance, a custom form can be substituted in place of the standard one.

This form can be invoked either by an end-user, or via the SchedulerControl.ShowCustomizeTimeRulerForm method. Note that the time ruler, which will be customized in the invoked form, can be accessed via the CustomizeTimeRulerFormEventArgs.TimeRuler property.

See Also