Back to Devexpress

SchedulerStorageBase.SetAppointmentFactory(IAppointmentFactory) Method

corelibraries-devexpress-dot-xtrascheduler-dot-schedulerstoragebase-dot-setappointmentfactory-x28-devexpress-dot-xtrascheduler-dot-iappointmentfactory-x29.md

latest4.0 KB
Original Source

SchedulerStorageBase.SetAppointmentFactory(IAppointmentFactory) Method

Assigns the specified appointment factory to the SchedulerStorageBase.

Namespace : DevExpress.XtraScheduler

Assembly : DevExpress.XtraScheduler.v25.2.Core.Desktop.dll

NuGet Package : DevExpress.Scheduler.CoreDesktop

Declaration

csharp
public void SetAppointmentFactory(
    IAppointmentFactory appointmentFactory
)
vb
Public Sub SetAppointmentFactory(
    appointmentFactory As IAppointmentFactory
)

Parameters

NameTypeDescription
appointmentFactoryIAppointmentFactory

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 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

csharp
{
    schedulerStorage1.SetAppointmentFactory(new TaskFactory());
    FillResources(schedulerStorage1, 5);

winforms-scheduler-print-appointments-using-reports/VB/PrintingViaReports/Form1.vb#L60

vb
Private Sub InitializeTasks()
    schedulerStorage1.SetAppointmentFactory(New TaskFactory())
    FillResources(schedulerStorage1, 5)

Implements

SetAppointmentFactory(IAppointmentFactory)

See Also

IAppointmentFactory

CreateAppointment

SchedulerStorageBase Class

SchedulerStorageBase Members

DevExpress.XtraScheduler Namespace