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

TileNavButtonCollection.Contains(ITileNavButton) Method

Determines whether the TileNavButtonCollection contains a specific ITileNavButton.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

public bool Contains(
    ITileNavButton button
)

Parameters

Name Type Description
button ITileNavButton

The ITileNavButton to locate in the TileNavButtonCollection.

Returns

Type Description
Boolean

true, if the ITileNavButton is found in the TileNavButtonCollection; otherwise, false.

Remarks

This method performs a linear search; therefore, this method is an O(n) operation, where n is TileNavButtonCollection.Count.

See Also