A newer version of this page is available.
Switch to the current version.
SchedulerDataStorage.CreateResource(Object, String) Method
Creates a new resource with the specified ID and a caption.
Namespace: DevExpress.XtraScheduler
Assembly: DevExpress.XtraScheduler.v18.2.dll
Declaration
public Resource CreateResource(
object resourceId,
string resourceCaption
)
Public Function CreateResource(
resourceId As Object,
resourceCaption As String
) As Resource
Parameters
Name | Type | Description |
---|---|---|
resourceId | Object | An object that is the unique resource identifier. |
resourceCaption | String | A string that is the resource caption accessible using the Resource.Caption property. |
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.
Implements
See Also
Feedback