corelibraries-devexpress-dot-xtrascheduler-dot-schedulerstoragebase-dot-setappointmentfactory-x28-devexpress-dot-xtrascheduler-dot-iappointmentfactory-x29.md
Assigns the specified appointment factory to the SchedulerStorageBase.
Namespace : DevExpress.XtraScheduler
Assembly : DevExpress.XtraScheduler.v25.2.Core.Desktop.dll
NuGet Package : DevExpress.Scheduler.CoreDesktop
public void SetAppointmentFactory(
IAppointmentFactory appointmentFactory
)
Public Sub SetAppointmentFactory(
appointmentFactory As IAppointmentFactory
)
| Name | Type | Description |
|---|---|---|
| appointmentFactory | IAppointmentFactory |
An object implementing the IAppointmentFactory interface which specifies the new appointment factory for the scheduler storage.
|
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 https://supportcenter.devexpress.com/ticket/details/e1183/winforms-scheduler-use-devexpress-reports-to-print-appointments.
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.
winforms-scheduler-print-appointments-using-reports/CS/PrintingViaReports/Form1.cs#L66
{
schedulerStorage1.SetAppointmentFactory(new TaskFactory());
FillResources(schedulerStorage1, 5);
winforms-scheduler-print-appointments-using-reports/VB/PrintingViaReports/Form1.vb#L60
Private Sub InitializeTasks()
schedulerStorage1.SetAppointmentFactory(New TaskFactory())
FillResources(schedulerStorage1, 5)
SetAppointmentFactory(IAppointmentFactory)
See Also