SchedulerControl.OptionsBehavior Property
Provides access to the scheduler control's behavior options.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
#Declaration
#Property Value
Type | Description |
---|---|
Options |
An Options |
#Remarks
Use the OptionsBehavior property to set behavior options for the SchedulerControl. For instance, you can specify the ID value of the time zone (the OptionsBehavior.ClientTimeZoneId property), whether the Reminders form should be shown, when the reminder is triggered (the OptionsBehavior.ShowRemindersForm property), whether the right-click should select a time cell under the cursor (the OptionsBehavior.SelectOnRightClick), etc. To get the complete list of the available options and their descriptions, see OptionsBehavior.
#Examples
This example demonstrates how to specify basic characteristics of the SchedulerControl using the SchedulerControl.OptionsBehavior property.
<dxsch:SchedulerControl.OptionsBehavior>
<dxsch:OptionsBehavior ClientTimeZoneId="Central Pacific Standard Time"
RecurrentAppointmentDeleteAction="Ask"
RecurrentAppointmentEditAction="Occurrence"
RemindersFormDefaultAction="DismissAll"
ShowRemindersForm="True"
SelectOnRightClick="True"/>
</dxsch:SchedulerControl.OptionsBehavior>