Skip to main content

TileItemCollection.Contains(TileItem) Method

Gets if the specific TileItem presents within the current TileItemCollection.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public bool Contains(
    TileItem item
)

Parameters

Name Type Description
item TileItem

A TileItem object to be tested.

Returns

Type Description
Boolean

true if the specific TileItem presents within the current TileItemCollection; otherwise, false.

Remarks

The Contains method determines if the specific tile belongs to the current tile items collection. To get a TileItemCollection that contains all tiles contained within a group, use the TileGroup.Items property. See the Tile Groups and Items topic to learn more.

See Also