Skip to main content

ASPxSchedulerDataWebControlBase.AppointmentRowDeleting Event

Fires before an appointment data row is deleted from the data source.

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v23.2.dll

NuGet Package: DevExpress.Web.Scheduler

Declaration

public event ASPxSchedulerDataDeletingEventHandler AppointmentRowDeleting

Event Data

The AppointmentRowDeleting event's data class is ASPxSchedulerDataDeletingEventArgs. The following properties provide information specific to this event:

Property Description
Cancel Gets or sets a value indicating whether the event should be canceled. Inherited from CancelEventArgs.
Keys Provides access to the collection of unique IDs for the appointment, which is about to be deleted.
Values Provides access to the collection of values for the appointment’s data fields.

Remarks

To cancel the appointment deletion, handle the AppointmentRowDeleting event and set the e.Cancel argument’s property to true.

See Also