Skip to main content

GroupExpandButtonDisplayMode Enum

Lists values that specify where the Form Layout group displays its expand button.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public enum GroupExpandButtonDisplayMode

Members

Name Description
Start

The group displays an expand button to the left of the caption.

End

The group displays an expand button to the right of the caption.

None

The group does not display an expand button.

Remarks

The example below sets the ExpandButtonDisplayMode property to Start:

<DxFormLayout>
    <DxFormLayoutGroup Caption="Personal Information" ExpandButtonDisplayMode="GroupExpandButtonDisplayMode.Start">
        <DxFormLayoutItem Caption="First Name:">
            <DxTextBox />
        </DxFormLayoutItem>
        <DxFormLayoutItem Caption="Last Name:">
            <DxTextBox />
        </DxFormLayoutItem>
    </DxFormLayoutGroup>
</DxFormLayout>

Display mode: Start

The example below sets the ExpandButtonDisplayMode property to End:

<DxFormLayoutGroup Caption="Personal Information" ExpandButtonDisplayMode="GroupExpandButtonDisplayMode.End">
    @* ... *@
</DxFormLayoutGroup>

Display mode: Right

The example below sets the ExpandButtonDisplayMode property to None:

<DxFormLayoutGroup Caption="Personal Information" ExpandButtonDisplayMode="GroupExpandButtonDisplayMode.None">
    @* ... *@
</DxFormLayoutGroup>

Display mode: None

See Also