SchedulerControl.AddAppointment(AppointmentItem) Method
Adds the specified appointment to the AppointmentItems collection.
Namespace: DevExpress.Xpf.Scheduling
Assembly: DevExpress.Xpf.Scheduling.v24.1.dll
NuGet Package: DevExpress.Wpf.Scheduling
Declaration
Parameters
Name | Type | Description |
---|---|---|
apt | AppointmentItem | A DevExpress.Xpf.Scheduling.AppointmentItem object to be added to the AppointmentItems collection. |
Returns
Type | Description |
---|---|
Boolean | true, if the appointment has been added to the AppointmentItems collection; otherwise, false. |
Remarks
The method does not add the specified appointment and returns false in either of the following cases:
- It would lead to conflicts restricted by the AllowAppointmentConflicts property and the CustomAllowAppointmentConflicts event
- The Cancel property of your AppointmentAdding event implementation returns true.
See Also