blazor-devexpress-dot-blazor-833d7061.md
Lists values that define the Toolbar item’s position.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public enum ToolbarItemAlignment
| 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.
|
The following properties accept/return ToolbarItemAlignment values:
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>
See Also