Skip to main content

PopupWindowShowAction(Controller, String, PredefinedCategory) Constructor

Creates a new instance of the PopupWindowShowAction class and initializes its properties.

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v26.1.dll

Declaration

public PopupWindowShowAction(
    Controller owner,
    string id,
    PredefinedCategory category
)

Parameters

Name Type Description
owner Controller

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

id String

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

category DevExpress.Persistent.Base.PredefinedCategory

A PredifinedCategory enumeration value that represents a category of the created Popup Window Show Action. This value is assigned to the ActionBase.Category property and used to map this Action to the appropriate Action Container.

Remarks

The constructor adds a Popup Window Show Action to the Controller specified by the owner parameter.

See Also