Skip to main content
All docs
V23.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.v23.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