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

Object Type Path to ChangeCaptionLocationAtWidth
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