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

GridBreakpointSettings.ChangeCaptionLocationAtWidth Property

Specifies the width at which a layout item’s caption location is changed when the control is in Adaptive Grid Layout (Breakpoints) mode.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(0)]
public int ChangeCaptionLocationAtWidth { get; set; }

Property Value

Type Default Description
Int32 0

The width.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ChangeCaptionLocationAtWidth
ASP.NET Bootstrap Controls BootstrapCardViewLayoutGroup
.GridSettings .ChangeCaptionLocationAtWidth
BootstrapGridViewLayoutGroup
.GridSettings .ChangeCaptionLocationAtWidth
BootstrapLayoutGroup
.GridSettings .ChangeCaptionLocationAtWidth
ASP.NET Web Forms Controls FormLayoutAdaptivitySettings
.GridSettings .ChangeCaptionLocationAtWidth
LayoutGroup
.GridSettings .ChangeCaptionLocationAtWidth

Remarks

Run Demo

<dx:ASPxFormLayout runat="server" ID="ASPxFormLayout" >
    <SettingsItemCaptions ChangeCaptionLocationInAdaptiveMode="True" />
    <Items>
        <dx:LayoutGroup Width="100%" Caption="Group name">
            <GridSettings ChangeCaptionLocationAtWidth="660">
                ...
            </GridSettings>
            <Items>
                <dx:LayoutItem Caption="First name" >
                    <CaptionSettings ChangeCaptionLocationInAdaptiveMode="Default" />
                    ...
                </dx:LayoutItem>
                ...
            </Items>
        </dx:LayoutGroup>
    </Items>
</dx:ASPxFormLayout>
See Also