Skip to main content

ASPxDataUpdatedEventArgs.NewValues Property

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

Namespace: DevExpress.Web.Data

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public OrderedDictionary NewValues { get; }

Property Value

Type Description
OrderedDictionary

A dictionary object.

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.

To access a value for an item, use the name of a corresponding field.

See Also