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

BootstrapPopupMenu.Items Property

Gets a collection that contains menu items of the menu’s root level.

Namespace: DevExpress.Web.Bootstrap

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

Declaration

[PersistenceMode(PersistenceMode.InnerProperty)]
public BootstrapMenuItemCollection Items { get; }

Property Value

Type Description
BootstrapMenuItemCollection

A BootstrapMenuItemCollection that contains the root level menu items of the current menu control.

Remarks

Use the Items property (collection) to access menu items of the current menu control’s root level, if any. To access menu items further down the menu tree, use the BootstrapMenuItem.Items property of a subsequent menu item. If the Items property is the null reference (Nothing in Visual Basic), the current menu does not have any menu items.

The Items property can be also used to programmatically manage the root menu items of the current menu item. You can add, insert, remove, retrieve, and modify BootstrapMenuItem objects from the collection. Any updates to the collection will be automatically reflected in the menu control the next time the page is refreshed.

See Also