SchedulerStorageBase.CreateResource(Object) Method
Creates a new resource with the specified ID.
Namespace: DevExpress.XtraScheduler
Assembly: DevExpress.XtraScheduler.v24.1.Core.Desktop.dll
NuGet Package: DevExpress.Scheduler.CoreDesktop
Declaration
Parameters
Name | Type | Description |
---|---|---|
resourceId | Object | An object that is the 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 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.
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CreateResource(Object) method.
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.