Skip to main content

ASPxSchedulerDataUpdatingEventArgs.NewValues Property

Provides access to the collection of modified values for the appointment’s data fields.

Namespace: DevExpress.Web.ASPxScheduler

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

NuGet Package: DevExpress.Web.Scheduler

Declaration

public OrderedDictionary NewValues { get; }

Property Value

Type Description
OrderedDictionary

A OrderedDictionary object that is a collection of data field name/value pairs.

Remarks

The NewValues property provides access to new values of the appointment’s fields, before an update is accomplished.

void ASPxScheduler1_AppointmentRowUpdating(object sender, ASPxSchedulerDataUpdatingEventArgs e) {
    // Access 'Price' custom field value
    Object value = e.NewValues["Price"];
}
See Also