Skip to main content
A newer version of this page is available. .
All docs
V20.2

BootstrapEditButton.SettingsBootstrap Property

Provides access to settings that affect edit button’s features specific to the Bootstrap framework.

Namespace: DevExpress.Web.Bootstrap

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

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[PersistenceMode(PersistenceMode.InnerProperty)]
public BootstrapButtonBootstrapSpecificSettingsBase SettingsBootstrap { get; }

Property Value

Type Description
BootstrapButtonBootstrapSpecificSettingsBase

Bootstrap-specific settings.

Remarks

<dx:BootstrapButtonEdit runat="server" Text="Sample Text">
    <ClientSideEvents ButtonClick="OnButtonClick" />
    <Buttons>
        <dx:BootstrapEditButton>
            <SettingsBootstrap RenderOption="Primary" />
        </dx:BootstrapEditButton>
    </Buttons>
</dx:BootstrapButtonEdit>
See Also