'Declaration
Public Event ValueChanging As EventHandler(Of CommitChangesEventsArgs)
public event EventHandler<CommitChangesEventsArgs> ValueChanging
Event Data
The event handler receives an argument of type CommitChangesEventsArgs containing data related to this event. The following CommitChangesEventsArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets a value indicating whether this commit will be canceled. |
NewList | Gets or sets the list of items after committing the changes. |
OldList | Gets or sets the list of items before committing the changes. |
See Also