OptionsView.NavigationButtonOptions Property
Provides access to the Navigation Buttons options.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
#Declaration
#Property Value
Type | Description |
---|---|
Navigation |
A Navigation |
#Property Paths
You can access the OptionsView.NavigationButtonOptions property from the following objects:
Object Type | Path to Navigation |
---|---|
Scheduler |
|
#Remarks
Use the NavigationButtonOptions property to customize different options for navigation buttons. For example, use the NavigationButtonOptions.Visibility property to specify when these buttons should be visible, or the NavigationButtonOptions.AppointmentSearchInterval property to specify how many days a SchedulerControl should scan to search for the nearest appointments for displaying navigation buttons.
#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>