Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Package: DevExpress.Win.Scheduler

#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