Skip to main content

ParametrizedAction(Controller, String, String, Type) Constructor

Initializes a new instance of the ParametrizedAction class.

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v26.1.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public ParametrizedAction(
    Controller owner,
    string id,
    string category,
    Type valueType
)

Parameters

Name Type Description
owner Controller

A Controller object that represents a Controller to which the created Parametrized Action is added. This object is assigned to the ActionBase.Controller property.

id String

A string value representing the created Parametrized Action’s identifier. This value is assigned to the ActionBase.Id property.

category String

A string value that represents a category of the created Parametrized Action. This value is assigned to the ActionBase.Category property and used to map this Action to the appropriate Action Container.

valueType Type

A Type value that specifies the type of the created Parametrized Action’s ParametrizedAction.Value.

Remarks

The constructor adds a Parametrized Action to the Controller specified by the owner parameter.

See Also