SchedulerStorage.SetAppointmentFactory(IAppointmentFactory) Method
Assigns the specified appointment factory to the SchedulerStorage.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
Declaration
public void SetAppointmentFactory(
IAppointmentFactory appointmentFactory
)
Public Sub SetAppointmentFactory(
appointmentFactory As IAppointmentFactory
)
Parameters
| Name | Type | Description |
|---|---|---|
| appointmentFactory | IAppointmentFactory | An object implementing the DevExpress.XtraScheduler.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 SchedulerStorage.CreateAppointment method.
See Also