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

BootstrapFileManager.SettingsToolbar Property

Gives access to the toolbar settings.

Namespace: DevExpress.Web.Bootstrap

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

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[PersistenceMode(PersistenceMode.InnerProperty)]
public BootstrapFileManagerSettingsToolbar SettingsToolbar { get; }

Property Value

Type Description
BootstrapFileManagerSettingsToolbar

The toolbar settings.

Remarks

Run Demo: Custom Toolbar

<dx:BootstrapFileManager runat="server" ID="FileManager1">
    <SettingsToolbar>
        <Items>
            <dx:BootstrapFileManagerToolbarCustomDropDownButton >
                <Items>
                    <dx:BootstrapFileManagerToolbarCustomButton Text="Default User" CommandName="DefaultUser" />
                    <dx:BootstrapFileManagerToolbarCustomButton Text="Document Manager" CommandName="DocumentManager" />
                    ...
                </Items>
            </dx:BootstrapFileManagerToolbarCustomDropDownButton>
        </Items>
    </SettingsToolbar>
</dx:BootstrapFileManager>
See Also