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

ASPxDataUpdatedEventArgs.NewValues Property

Gets a dictionary that contains the updated values of the non-key field name/value pairs in the row.

Namespace: DevExpress.Web.Data

Assembly: DevExpress.Web.v19.1.dll

Declaration

public OrderedDictionary NewValues { get; }

Property Value

Type Description
OrderedDictionary

A OrderedDictionary object that contains the updated values of the non-key field name/value pairs in the row.

Remarks

The primary key field is not included in this dictionary. To access the values of the primary key field, use the ASPxDataUpdatedEventArgs.Keys property. To access the original values of the non-key fields in the row, use the ASPxDataUpdatedEventArgs.OldValues property.

Note

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

See Also