SchedulerControl.ShowRecurrentAppointmentDeleteForm(Appointment, ref Boolean) Method
OBSOLETE
You should use the 'QueryDeleteAppointmentResult ShowRecurrentAppointmentDeleteForm(Appointment apt)' instead
Invokes the Confirm Delete dialog for the specified recurring appointment. Obsolete. Use the SchedulerControl.ShowDeleteRecurrentAppointmentForm method instead.
Namespace: DevExpress.XtraScheduler
Assembly: DevExpress.XtraScheduler.v26.1.dll
Declaration
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("You should use the 'QueryDeleteAppointmentResult ShowRecurrentAppointmentDeleteForm(Appointment apt)' instead", true)]
public virtual DialogResult ShowRecurrentAppointmentDeleteForm(
Appointment apt,
ref bool deleteSeries
)
Parameters
| Name | Type | Description |
|---|---|---|
| apt | Appointment | An Appointment object which is the appointment to delete. |
| deleteSeries | Boolean | True to delete the entire series of a recurring appointment; otherwise, false. |
Returns
| Type | Description |
|---|---|
| DialogResult | A DialogResult enumeration value that is the return value of the dialog. |
Remarks
This method is now obsolete. You should use the SchedulerControl.ShowDeleteRecurrentAppointmentForm method instead.
See Also