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

SchedulerControl.Services Property

Provides access to the object which contains all implemented services and service-oriented methods. Facilitates the use of Scheduler services.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v18.1.dll

Declaration

[Browsable(false)]
public SchedulerServices Services { get; }

Property Value

Type Description
DevExpress.XtraScheduler.Services.SchedulerServices

A DevExpress.XtraScheduler.Services.SchedulerServices object, which provides access to implemented services and related methods.

Remarks

The Services property helps you find and use service-oriented properties and methods, since they are unfolded using the common Intellisense mechanism. Usage is very straightforward:


using DevExpress.XtraScheduler;
using DevExpress.XtraScheduler.Services;
//...
//Instead of the common practice of calling services, as follows:
//IResourceNavigationService svc = (IResourceNavigationService)schedulerControl1.GetService(
    typeof(IResourceNavigationService));
//if (svc != null)svc.NavigateForward();

//you may use one line of code, but note that the service existence is not guaranteed at runtime
schedulerControl1.Services.ResourceNavigation.NavigateForward();

The following code snippets (auto-collected from DevExpress Examples) contain references to the Services property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also