Skip to main content

BaseOptionChangedEventArgs(String, Object, Object) Constructor

Creates a new BaseOptionChangedEventArgs object.

Namespace: DevExpress.Utils.Controls

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public BaseOptionChangedEventArgs(
    string name,
    object oldValue,
    object newValue
)

Parameters

Name Type Description
name String

A String value representing the name of the option whose value has been changed. This value is assigned to the BaseOptionChangedEventArgs.Name property.

oldValue Object

A Object value representing the option’s previous value. This value is assigned to the BaseOptionChangedEventArgs.OldValue property.

newValue Object

A Object value representing the option’s current value. This value is assigned to the BaseOptionChangedEventArgs.NewValue property.

See Also