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

DxFormLayoutTabPages Class

Represents a collection of tabbed layout groups.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.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>

Online Demo

Form Layout - Tabbed Groups

Inheritance

See Also