Skip to main content
A newer version of this page is available. .

ASPxDataUpdatingEventArgs.OldValues Property

Gets a dictionary that contains the original field name/value pairs in the row to be updated.

Namespace: DevExpress.Web.Data

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public OrderedDictionary OldValues { get; }

Property Value

Type Description
OrderedDictionary

A OrderedDictionary object that contains a dictionary of the original field name/value pairs for the row to be updated.

Remarks

The OldValues property is automatically populated with the original values of all the field name/value pairs in the row. This dictionary contains all fields in the row, including the key fields.

Note

To set or get a value for a row, use a field name of a corresponding column.

See Also