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

ToolbarItemAlignment Enum

Lists values that define the Toolbar item’s position.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v22.1.dll

NuGet Package: DevExpress.Blazor

Declaration

public enum ToolbarItemAlignment

Members

Name Description
Left

The item is aligned to the left of the underlying container.

Right

The item is aligned to the right of the underlying container.

Related API Members

The following properties accept/return ToolbarItemAlignment values:

Remarks

The ToolbarItemAlignment enumeration values specify the Toolbar item‘s position.

<DxToolbar>
    <DxToolbarItem Text="Insert"  Alignment="ToolbarItemAlignment.Right"></DxToolbarItem>
    <DxToolbarItem Text="Edit" Alignment="ToolbarItemAlignment.Left"></DxToolbarItem>
    <DxToolbarItem Text="Delete" Alignment="ToolbarItemAlignment.Right"></DxToolbarItem>
</DxToolbar>

Toolbar Item Alignment

Run Demo: Toolbar - Overview

See Also