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

ChangingEventArgs(Object, Object, Boolean) Constructor

Creates a new ChangingEventArgs object.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

public ChangingEventArgs(
    object oldValue,
    object newValue,
    bool cancel
)

Parameters

Name Type Description
oldValue Object

An object representing the editor’s value. This value is assigned to the ChangingEventArgs.OldValue property.

newValue Object

An object representing the value about to be assigned to the editor. This value is assigned to the ChangingEventArgs.NewValue property.

cancel Boolean

true if the event should be canceled; otherwise, false.

See Also