Skip to main content
Tab

NavBarGroupCollection Class

Represents a collection of groups within the navbar control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class NavBarGroupCollection :
    Collection<NavBarGroup>

The following members return NavBarGroupCollection objects:

Remarks

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

See Also