SmartPasteEditValueChangingEventArgs(RoutedEvent, BaseEdit, Object, Boolean) Constructor
Initializes a new instance of the SmartPasteEditValueChangingEventArgs class with specified settings.
Namespace: DevExpress.Xpf.LayoutControl
Assembly: DevExpress.Xpf.LayoutControl.v25.1.dll
NuGet Package: DevExpress.Wpf.LayoutControl
Declaration
public SmartPasteEditValueChangingEventArgs(
RoutedEvent routedEvent,
BaseEdit editor,
object newValue,
bool cancel = false
)
Parameters
Name | Type | Description |
---|---|---|
routedEvent | RoutedEvent | The routed event associated with this event data. |
editor | BaseEdit | The editor whose value is being changed. This value is assigned to the Editor property. |
newValue | Object | The editor’s new value. This value is assigned to the NewValue property. |
Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
cancel | Boolean | False | true to cancel the operation; otherwise, false. This value is assigned to the Cancel property. |
See Also