Skip to main content

SchedulerStorage.AppointmentsInserted Event

Fires after one or more appointments have been added to the collection.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v14.2.dll

#Declaration

public event PersistentObjectsEventHandler AppointmentsInserted

#Event Data

The AppointmentsInserted event's handler receives an argument of the PersistentObjectsEventArgs type. The following properties provide information specific to this event:

Property Description
Objects Gets the persistent objects for which the event was raised.

#Remarks

The AppointmentsInserted event serves as notification that one or more appointments have been added. The event parameter's PersistentObjectsEventArgs.Objects property allows you to get the inserted appointments.

To validate appointment insertion, or decide whether an appointment can be added, handle the SchedulerStorage.AppointmentInserting event.

See Also