Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.

SchedulerListEditorBase.ResourceDataSourceCreated Event

Occurs after the resources data source has been instantiated by the SchedulerListEditorBase‘s descendant.

Namespace: DevExpress.ExpressApp.Scheduler

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

Declaration

public event EventHandler<ResourceDataSourceCreatedEventArgs> ResourceDataSourceCreated

Event Data

The ResourceDataSourceCreated event's data class is ResourceDataSourceCreatedEventArgs. The following properties provide information specific to this event:

Property Description
DataSource Specifies the object used to store resources.

Remarks

This event is raised in the protected SchedulerListEditorBase.CreateResourcesDataSource method. Handle this event to perform custom actions over the resources data source used by the SchedulerListEditorBase‘s descendant. The handler’s DataSource parameter provides access to an object collection that represents the resources data source.

To specify a custom resources data source to be used by the SchedulerListEditorBase‘s descendant, handle the SchedulerListEditorBase.ResourceDataSourceCreating event.

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

See Also