Skip to main content
All docs
V21.1

DxFormLayoutTabPages.ColSpanLg Property

Specifies the number of columns a tab page occupies on a large screen (992px or wider).

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v21.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public int ColSpanLg { get; set; }

Property Value

Type Description
Int32

The number of columns.

Remarks

The Form Layout allows you to create responsive and automatically-aligned edit forms.

The Form Layout component uses the Bootstrap grid system markup: each layout item occupies between 1 and 12 virtual columns. Use the ColSpanLg property to specify the number of columns for screens that are 992px or wider.

<DxFormLayout>
    <DxFormLayoutTabPages ColSpanLg="4">
        ...
    </DxFormLayoutTabPages>
</DxFormLayout>
See Also