Skip to main content
.NET Framework 4.6.2+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ResourceDataSourceCreatingEventArgs Class

Represents arguments passed to the SchedulerListEditorBase.ResourceDataSourceCreating event.

Namespace: DevExpress.ExpressApp.Scheduler

Assembly: DevExpress.ExpressApp.Scheduler.v24.2.dll

#Declaration

public class ResourceDataSourceCreatingEventArgs :
    HandledEventArgs

#Remarks

The ResourceDataSourceCreating event is raised in the protected SchedulerListEditorBase.CreateResourcesDataSource method. You can use the ResourceDataSourceCreating event to specify a custom resources data source to be used by the SchedulerListEditorBase‘s descendant. The handler’s ResourceDataSourceCreatingEventArgs.ResourceType parameter specifies the type of resource objects used by the scheduling control. Instantiate a collection of the required resources and pass it to the handler’s ResourceDataSourceCreatingEventArgs.DataSource parameter. Set the handler’s Handled parameter to true, to prohibit the creation of the default resources collection.

To perform custom actions over the resources data source used by the SchedulerListEditorBase‘s descendant, handle the SchedulerListEditorBase.ResourceDataSourceCreated.

For information on resources, refer to the Resources in a Schedule topic.

#Inheritance

Object
EventArgs
HandledEventArgs
ResourceDataSourceCreatingEventArgs
See Also