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

NavItemCollection.Item[Int32] Property

Gets an item of the collection by its index.

Namespace: DevExpress.XtraNavBar

Assembly: DevExpress.XtraNavBar.v19.1.dll

Declaration

public virtual NavBarItem this[int index] { get; }

Parameters

Name Type Description
index Int32

An integer value specifying the zero-based index of the desired item.

Property Value

Type Description
NavBarItem

A NavBarItem object representing the item located at the specified index within the collection.

Remarks

If the parameter value is negative or exceeds the maximum available index, an exception is raised.

Example

The following sample code shows you how to iterate over NavBarControl items via the NavBarControl.Items property.

using DevExpress.XtraNavBar;
// ...
for (int i = 0; i < navBarControl1.Items.Count; i++) {
   NavBarItem item = navBarControl1.Items[i];
   // perform some operations on an item here
   //...
}
See Also