Skip to main content
A newer version of this page is available. .

IResourceFactory Interface

Provides methods for creating resources.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.1.Core.dll

Declaration

public interface IResourceFactory

The following members return IResourceFactory objects:

Remarks

The IResourceFactory interface declares the IResourceFactory.CreateResource method, which defines a way of creating resources. To specify a custom way of creating resources using the SchedulerStorage you should implement this method and then assign the new resource factory to the Scheduler Storage via the SchedulerStorageBase.SetResourceFactory method.

Then the Scheduler Storage will use this factory when creating a resource via its SchedulerStorageBase.CreateResource method.

See Also