blazor-devexpress-dot-blazor-26982361.md
Lists values that specify the position of an individual menu item or all items.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public enum ItemPosition
| Name | Description |
|---|---|
Start |
A menu item or all menu items are placed closer to the left edge (horizontal orientation) or top edge (vertical orientation) of the menu container.
|
| Center |
A menu item or all menu items are placed in the center of the menu container.
|
| End |
A menu item or all menu items are placed closer to the right edge of the menu container (for horizontal orientation) or bottom edge (for vertical orientation).
|
The following properties accept/return ItemPosition values:
Use the DxMenu.ItemsPosition property to align menu items in the menu container. To specify the position of an individual menu item, use the DxMenuItem.Position property.
<div class="card w-50">
<DxMenu Title="DevExpress"
ItemsPosition="ItemPosition.Start">
<Items>
<DxMenuItem Text="Products" IconCssClass="oi oi-layers"/>
<DxMenuItem Text="Support" IconCssClass="oi oi-person" />
<DxMenuItem Text="Documentation" IconCssClass="oi oi-book" Position="ItemPosition.End"/>
</Items>
</DxMenu>
</div>
See Also