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

IResourceStorageBase.CreateResource(Object) Method

Creates a new resource with the specified ID.

Namespace: DevExpress.XtraScheduler

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

Declaration

Resource CreateResource(
    object id
)

Parameters

Name Type Description
id Object

An object that is a unique resource identifier.

Returns

Type Description
Resource

A Resource object.

Remarks

Use the CreateResource method to create a new resource. This method also creates all the mapped 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 using the resource factory. To change the default resource factory, you should create an object that implements the IResourceFactory interface, and specify this object as the resource factory for the scheduler storage using the SchedulerStorageBase.SetResourceFactory method.

See Also