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

ASPxDataUpdatedEventArgs.OldValues Property

Gets a dictionary that contains the original field name/value pairs for the updated record.

Namespace: DevExpress.Web.Data

Assembly: DevExpress.Web.v19.1.dll

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 updated record.

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