Skip to main content
A newer version of this page is available. .
All docs
V20.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.v20.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:

Show 13 property paths
Library Object Type Path to ChangeCaptionLocationAtWidth
ASP.NET Controls and MVC Extensions CardViewLayoutGroup
.GridSettings .ChangeCaptionLocationAtWidth
FormLayoutAdaptivitySettings
.GridSettings .ChangeCaptionLocationAtWidth
GridLayoutGroup
.GridSettings .ChangeCaptionLocationAtWidth
GridViewLayoutGroup
.GridSettings .ChangeCaptionLocationAtWidth
LayoutGroup
.GridSettings .ChangeCaptionLocationAtWidth
ASP.NET Bootstrap Controls BootstrapCardViewLayoutGroup
.GridSettings .ChangeCaptionLocationAtWidth
BootstrapGridViewLayoutGroup
.GridSettings .ChangeCaptionLocationAtWidth
BootstrapLayoutGroup
.GridSettings .ChangeCaptionLocationAtWidth
ASP.NET MVC Extensions MVCxCardViewLayoutGroup
.GridSettings .ChangeCaptionLocationAtWidth
MVCxFormLayoutGroup
.GridSettings .ChangeCaptionLocationAtWidth
MVCxFormLayoutGroup<ModelType>
.GridSettings .ChangeCaptionLocationAtWidth
MVCxGridViewLayoutGroup
.GridSettings .ChangeCaptionLocationAtWidth
MVCxGridViewLayoutGroup<ModelType>
.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