Back to Devexpress

Resource Navigation Services

windowsforms-4110-controls-and-libraries-scheduler-services-resource-navigation-services.md

latest1.4 KB
Original Source

Resource Navigation Services

  • Oct 29, 2020

The IResourceNavigationService interface in the XtraScheduler provides means for resource control and navigation.

You can get the IResourceNavigationService as described in Introduction to Services in XtraScheduler document, use it or substitute with your own custom descendant.

The simplest technique to use the Resource Navigation service is to get access to its properties and methods via the SchedulerControl.Services.ResourceNavigation property wrapper, for example:

csharp
if (!schedulerControl1.Services.ResourceNavigation.CanNavigateBackward())
schedulerControl1.Services.ResourceNavigation.NavigateLast();
vb
If (Not schedulerControl1.Services.ResourceNavigation.CanNavigateBackward()) Then
schedulerControl1.Services.ResourceNavigation.NavigateLast()
End If

See Also

Resources for Appointments

Resource Navigator