Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

Controller.Actions Property

Provides access to a Controller‘s Action collection.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v20.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

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

Property Value

Type Description
DevExpress.ExpressApp.Core.ActionList

An ActionList object representing a list of the current Controller’s Actions.

Remarks

Use members of the ActionList object returned by this property to manage the current Controller’s Actions list. For instance, use the Add, AddRange and Clear methods and, the Count property.

See Also