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

BarItems.IndexOf(BarItem) Method

Returns the specified item’s position within the collection.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

public virtual int IndexOf(
    BarItem item
)

Parameters

Name Type Description
item BarItem

A BarItem descendant to locate in the collection.

Returns

Type Description
Int32

A zero-based integer representing the item’s position within the collection. -1 if the collection does not contain the specified item.

Remarks

This method scans the collection starting at the first element and returns the index of the first matching element found.

See Also