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

Resource Interface

Defines a common attribute which can be assigned to appointments to group them.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v18.1.Core.dll

Declaration

public interface Resource :
    IPersistentObject,
    IBatchUpdateable,
    IDisposable,
    IIdProvider

The following members accept/return Resource objects:

Show 54 links
Library Related API Members
Cross-Platform Class Library AppointmentDragEventArgs.HitResource
AppointmentResizeEventArgs.HitResource
IntervalFoundEventArgs.Resource
IResourceFactory.CreateResource()
IResourceStorageBase.CreateResource(Object)
IResourceStorageBase.CreateResource(Object, String)
IResourceStorageBase.GetResourceById(Object)
ISchedulerStorageBase.CreateResource(Object)
ISchedulerStorageBase.CreateResource(Object, String)
ISchedulerStorageBase.GetResourceById(Object)
MoreButtonClickedEventArgs.Resource
QueryResourceColorSchemaEventArgs.Resource
QueryWorkTimeEventArgs.Resource
ResourceBaseCollection.GetResourceById(Object)
ResourceEmpty.Resource
ResourceStorageBase.CreateResource(Object)
ResourceStorageBase.CreateResource(Object, String)
ResourceStorageBase.GetResourceById(Object)
ResourceStorageBase.Item[Int32]
SchedulerStorageBase.CreateResource(Object)
SchedulerStorageBase.CreateResource(Object, String)
WorkTimeValidationEventArgs.Resource
WinForms Controls DependencyViewInfo.Resource
ResourceDataStorage.Add(Object)
ResourceDataStorage.Add(Object, String)
ResourceDataStorage.Add(Object, String, Color)
ResourceDataStorage.CreateResource(Object)
ResourceDataStorage.CreateResource(Object, String)
ResourceDataStorage.CreateResource(Object, String, Color)
ResourceDataStorage.GetResourceById(Object)
ResourceDataStorage.Item[Int32]
SchedulerControl.SelectedResource
SchedulerDataStorage.CreateResource(Object)
SchedulerDataStorage.CreateResource(Object, String)
SchedulerDataStorage.GetResourceById(Object)
SchedulerViewBase.SelectedResource
SingleWeekCellBase.Resource
WPF Controls AppointmentFormController.AppointmentResource
AppointmentViewInfo.Resource
MoreButtonClickedRoutedEventArgs.Resource
ResourceStorage.CreateResource(Object)
ResourceStorage.GetResourceById(Object)
SchedulerControl.SelectedResource
SchedulerStorage.CreateResource(Object)
SchedulerStorage.CreateResource(Object, String)
SchedulerViewBase.SelectedResource
VisualNavigationButton.Resource
eXpressApp Framework ASPxSchedulerListEditor.SelectedResource
SchedulerListEditor.SelectedResource
SchedulerListEditorBase.SelectedResource
ASP.NET Web Forms Controls AppointmentViewInfo.Resource
ASPxScheduler.SelectedResource
ASPxSchedulerTimeCellPreparedEventArgs.Resource
SchedulerViewBase.SelectedResource

Remarks

The Resource represents a common attribute which can be assigned to appointments to group them and facilitate the task of managing the time of resources and people groups under a single View. An appointment can be associated with a resource by setting the appointment’s Appointment.ResourceId property to the required resource’s unique identifier.

In addition to the members inherited from the PersistentObject class, the Resource class provides an interface enabling a resource instance’s caption (Resource.Caption), color (Resource.Color), unique identifier (PersistentObject.Id) and visibility (Resource.Visible) to be specified.

Use the SchedulerStorageBase.CreateResource method to create a resource. Add it to the persistent storage using the ResourceStorageBase.Add method. Resources are maintained within the ResourceStorageBase.Items collection of a ResourceStorage object which is referenced by the SchedulerStorage.Resources property of the SchedulerStorage component.

An instance of the Resource can be accessed via the ResourceStorageBase.Item property of the ResourceStorage object.

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

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