Skip to main content

TileNavButtonCollection.Contains(ITileNavButton) Method

Determines whether the TileNavButtonCollection contains a specific ITileNavButton.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

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