Skip to main content

SchedulerStorage.CreateResource(Object) Method

Creates a new resource with the specified ID.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v23.2.dll

NuGet Package: DevExpress.Wpf.Scheduler

Declaration

public Resource CreateResource(
    object resourceId
)

Parameters

Name Type Description
resourceId Object

An object that is the unique resource identifier.

Returns

Type Description
Resource

A Resource object.

Remarks

Important

You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.Xpf.Scheduling namespace. If you decide to upgrade an existing project in order to switch to the updated scheduler control, see the Migration Guidelines document.

Use the CreateResource method to create a new resource. This method also creates all the required custom fields and adds them to the resource’s CustomFieldCollection, available via the PersistentObject.CustomFields property. To add custom fields to the resource manually, use the PersistentObjectStorage<T>.CreateCustomFields method.

The CreateResource method creates a resource via the resource factory (an object which implements the IResourceFactory interface). To change the default resource factory, you should implement the IResourceFactory interface, and specify this object as the resource factory for the scheduler storage via the SchedulerStorageBase.SetResourceFactory method.

See Also