ToolbarItemAlignment Enum
Lists values that define the Toolbar item’s position.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.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>
See Also