OptionsView Class
Provides view options for the scheduler control.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
Declaration
public class OptionsView :
SchedulerOptionsBase<SchedulerOptionsViewBase>
Public Class OptionsView
Inherits SchedulerOptionsBase(Of SchedulerOptionsViewBase)
Returned By
The SchedulerControl.OptionsView property returns an instance of OptionsView.
Remarks
The OptionsView class provides a set of properties that specify the scheduler control's presentation. An instance of this class can be accessed via the SchedulerControl.OptionsView property.
Examples
This example demonstrates how to specify the SchedulerControl's presentation using the SchedulerControl.OptionsView property.
<dxsch:SchedulerControl.OptionsView>
<dxsch:OptionsView FirstDayOfWeek="Tuesday" ShowOnlyResourceAppointments="True">
<dxsch:OptionsView.NavigationButtonOptions>
<dxsch:NavigationButtonOptions Visibility="Auto" AppointmentSearchInterval="2"/>
</dxsch:OptionsView.NavigationButtonOptions>
</dxsch:OptionsView>
</dxsch:SchedulerControl.OptionsView>
Inheritance
See Also