Skip to main content
Tab

NavBarItemCollection Class

Represents a collection of items within a group.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class NavBarItemCollection :
    Collection<NavBarItem>

The following members return NavBarItemCollection objects:

Remarks

Each group within a navbar control holds its items within a collection which is represented by an instance of the NavBarItemCollection class and can be accessed by the NavBarGroup.Items property. The properties and methods exposed by the NavBarItemCollection class can be used to perform common collection operations such as adding new or deleting existing group items. Each item of the collection is a NavBarItem object. Individual items can be accessed using indexer notation, by their names or display texts using the specific methods of the collection.

See Also