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

BootstrapFABActionCollection Class

Represents the Floating Action Button‘s action collection.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v20.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public class BootstrapFABActionCollection :
    Collection<BootstrapFABActionBase>

The following members return BootstrapFABActionCollection objects:

Remarks

The BootstrapFloatingActionButton stores its actions and action groups within the Items collection. This collection is represented by the BootstrapFABActionCollection class. Members of this class can be used to add, delete, access individual actions and action groups and perform other common collection management tasks.

<dx:BootstrapFloatingActionButton runat="server" ContainerCssSelector="#default-fab">
    <Items>
        <dx:BootstrapFABAction ActionName="a1" ContextName="context1" Text="Create Item"/>
    </Items>
</dx:BootstrapFloatingActionButton>
See Also