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

ResourceStorageBase.CreateResource(Object, String) Method

Creates a new resource with the specified ID and caption.

Namespace: DevExpress.XtraScheduler

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

Declaration

public Resource CreateResource(
    object id,
    string caption
)

Parameters

Name Type Description
id Object

An object, that is a unique resource identifier.

caption String

A string that is displayed as resource’s caption (Resource.Caption).

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 (an object which implements the IResourceFactory interface). 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