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

BaseEdit.OldEditValue Property

Gets the last successfully validated value.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[Browsable(false)]
public virtual object OldEditValue { get; }

#Property Value

Type Description
Object

An object representing the last value that was successfully validated.

#Remarks

The current edit value can be accessed via the BaseEdit.EditValue property.

When an end-user enters an editor and attempts to modify the current value, this value is stored in the OldEditValue property. For instance, you can use the old value when the editor’s current value is being validated via the RepositoryItem.Validating event.

See Also