Skip to main content
.NET 6.0+

ObjectChangedEventArgs(Object, String, Object, Object) Constructor

Creates and initializes a new instance of the ObjectChangedEventArgs class.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public ObjectChangedEventArgs(
    object obj,
    string propertyName,
    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.

propertyName String

A string containing the name of a property whose value has been changed. This parameter value is used to initialize the ObjectChangedEventArgs.PropertyName 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