Skip to main content
Tab

NavBarItems.Item[Int32] Property

Returns a NavBarItem object from the NavBarItems at the specified index.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public NavBarItem this[int index] { get; }

Parameters

Name Type Description
index Int32

An integer value representing the zero-based index of the NavBarItem to retrieve from the NavBarItems.

Property Value

Type Description
NavBarItem

A NavBarItem object representing an item with the specified index.

Remarks

The property allows you to get access to a particular NavBarItem within the NavBarItems by its index. To iterate through all items of the NavBarItems, use the Item property together with the NavBarItems.Count property.

See Also