Skip to main content

TileContainer.CheckedTiles Property

Gets all checked tiles within the current TileContainer.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[Browsable(false)]
public IEnumerable<BaseTile> CheckedTiles { get; }

Property Value

Type Description
IEnumerable<BaseTile>

An IEnumerable object containing all checked tiles within the current TileContainer.

Remarks

An end-user can check tiles at runtime with a right mouse button click. Checked tiles are marked with check sign in the top-right corner (see the image below):

DocumentManager - Checked Tile

The CheckedTiles property provides access to all currently checked tiles within a TileContainer. By default, tile checking is enabled. Use the IBaseTileProperties.AllowCheck property to disable this feature.

See Also