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

MenuState.Items Property

Gets a list of objects that represent the states of all the menu items within the Menu extension.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.2.dll

Declaration

public IEnumerable<MenuItemState> Items { get; }

Property Value

Type Description
IEnumerable<MenuItemState>

A list of MenuItemState objects containing information about the states of menu items.

Remarks

Use the Items property to get a list that contains information about the states of all menu items. To get the state of the selected item only, use the MenuState.SelectedItem property.

See Also