Skip to main content
A newer version of this page is available. .

DxFormLayoutTabPages Class

A collection of tabbed layout groups.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v21.1.dll

NuGet Package: DevExpress.Blazor

Declaration

public class DxFormLayoutTabPages :
    FormLayoutGroupBase

Remarks

The Form Layout uses the DxFormLayoutTabPages object to store tabbed layout groups.

<DxFormLayout>
    <DxFormLayoutTabPages>
        <DxFormLayoutTabPage Caption="Personal Information">
            <DxFormLayoutItem Caption="First Name:" ColSpanMd="6" >
                ...
            </DxFormLayoutItem>
            ...
        </DxFormLayoutTabPage>
        <DxFormLayoutTabPage Caption="Work Information">
            ...
        </DxFormLayoutTabPage>
    </DxFormLayoutTabPages>
</DxFormLayout>

Tabbed groups

Use the CaptionPosition property to place the caption above an item (Vertical) or at its left (Horizontal).

You can disable tab pages or mark it as read-only.

Run Demo: Form Layout - Tabbed Groups

Inheritance

See Also