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

ParametrizedActionExecuteEventArgs(ActionBase, ISelectionContext, Object) Constructor

Initializes a new instance of the ParametrizedActionExecuteEventArgs class.

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public ParametrizedActionExecuteEventArgs(
    ActionBase action,
    ISelectionContext context,
    object parameterCurrentValue
)

Parameters

Name Type Description
action ActionBase

An ActionBase object that represents the Action whose execution has raised the ParametrizedAction.Execute event. This parameter value is assigned to the ActionBaseEventArgs.Action property.

context DevExpress.ExpressApp.ISelectionContext

An instance of the class that implements the ISelectionContext interface. This parameter value is used to specify the SimpleActionExecuteEventArgs.SelectedObjects and SimpleActionExecuteEventArgs.CurrentObject properties.

parameterCurrentValue Object

An object that represents the currently validated value of the Parametrized Action’s editor.

Remarks

Since instances of the ParametrizedActionExecuteEventArgs class are automatically created and passed to handlers of the ParametrizedAction.Execute event, you do not need to call this constructor from your application.

See Also