IResourceStorageBase.CreateResource(Object) Method
Creates a new resource with the specified ID.
Namespace: DevExpress.XtraScheduler
Assembly: DevExpress.XtraScheduler.v24.1.Core.dll
NuGet Package: DevExpress.Scheduler.Core
Declaration
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.