The NewValues property provides access to new values of the appointment's fields, before an update is accomplished.
C# |
void ASPxScheduler1_AppointmentRowUpdating(object sender, ASPxSchedulerDataUpdatingEventArgs e) {
Object value = e.NewValues["Price"];
}
|
VB |
Private Sub ASPxScheduler1_AppointmentRowUpdating(ByVal sender As Object, ByVal e As ASPxSchedulerDataUpdatingEventArgs)
Dim value As Object = e.NewValues("Price")
End Sub
|