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

SchedulerStorageBase.SetAppointmentFactory(IAppointmentFactory) Method

Assigns the specified appointment factory to the SchedulerStorageBase.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v18.2.Core.dll

Declaration

public void SetAppointmentFactory(
    IAppointmentFactory appointmentFactory
)

Parameters

Name Type Description
appointmentFactory IAppointmentFactory

An object implementing the IAppointmentFactory interface which specifies the new appointment factory for the scheduler storage.

Remarks

Use the SetAppointmentFactory method to specify a custom appointment factory for the scheduler storage. This factory is used to create new appointments via the SchedulerStorageBase.CreateAppointment method.

Tip

A complete sample project is available in the DevExpress Code Examples database at http://www.devexpress.com/example=E1183.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the SetAppointmentFactory(IAppointmentFactory) 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.

See Also