Skip to main content
A newer version of this page is available. .

Resource Navigation Services

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:


if (!schedulerControl1.Services.ResourceNavigation.CanNavigateBackward())
schedulerControl1.Services.ResourceNavigation.NavigateLast();
See Also