Back to Devexpress

GroupExpandButtonDisplayMode Enum

blazor-devexpress-dot-blazor-659257de.md

latest2.5 KB
Original Source

GroupExpandButtonDisplayMode Enum

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

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
public enum GroupExpandButtonDisplayMode

Members

NameDescription
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.

|

The following properties accept/return GroupExpandButtonDisplayMode values:

LibraryRelated API Members
BlazorDxFormLayoutGroup.ExpandButtonDisplayMode
.NET Reporting ToolsGroupModel.ExpandButtonDisplayMode

Remarks

The following code snippet sets the ExpandButtonDisplayMode property to Start:

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

The following code snippet sets the ExpandButtonDisplayMode property to End:

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

The following code snippet sets the ExpandButtonDisplayMode property to None:

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

See Also

DevExpress.Blazor Namespace