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.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
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 |
|
LayoutGroup |
|
Remarks
<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