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

ObjectChangedEventArgs(Object, IMemberInfo, Object, Object) Constructor

Creates and initializes a new instance of the ObjectChangedEventArgs class.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public ObjectChangedEventArgs(
    object obj,
    IMemberInfo memberInfo,
    object oldValue,
    object newValue
)

Parameters

Name Type Description
obj Object

The object whose property value has been changed. This parameter value is used to initialize the ObjectManipulatingEventArgs.Object property.

memberInfo IMemberInfo

An IMemberInfo object that stores information on the property whose value has been changed. This parameter value is used to initialize the ObjectChangedEventArgs.MemberInfo property.

oldValue Object

The old value of a changed property. This parameter value is used to initialize the ObjectChangedEventArgs.OldValue property.

newValue Object

The new value of a changed property. This parameter value is used to initialize the ObjectChangedEventArgs.NewValue property.

See Also