Skip to main content
.NET 6.0+

DevExpress v24.1 Update — Your Feedback Matters

Our What's New in v24.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

Controller.Actions Property

Returns a Controller‘s Action collection.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v24.1.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

[Browsable(false)]
public ActionList Actions { get; }

#Property Value

Type Description
DevExpress.ExpressApp.Core.ActionList

A list of the current Controller’s Actions.

#Remarks

To manage the current Controller’s Actions list, use members of the ActionList object that this property returns. For example, use the Add, AddRange, and Clear methods or the Count property.

The following example demonstrates how to get the Task.MarkCompleted Action from this collection:

using DevExpress.ExpressApp;
using DevExpress.ExpressApp.SystemModule;
using DevExpress.ExpressApp.Actions;
// ...
public class MyViewController : ViewController {
    protected override void OnActivated() {
        base.OnActivated();
        ObjectMethodActionsViewController controller = Frame.GetController<ObjectMethodActionsViewController>();
        if (controller != null) {
            SimpleAction markCompletedAction = controller.Actions["Task.MarkCompleted"] as SimpleAction;
            // ...
        }
        // ...
    }
}

Refer to the following help topic for information on how to get an identifier of an Action: Determine an Action’s Controller and Identifier.

See Also