Skip to main content

TileViewLayoutMode Enum

Contains values that specify the way tiles are arranged in the TileView.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

public enum TileViewLayoutMode

Members

Name Description
Default

The default tile layout mode, in which tiles are arranged in multiple columns and rows. In horizontal mode (see TileViewItemOptions.Orientation), tiles are arranged down (the maximum number of rows is limited by TileViewItemOptions.RowCount) then across. In vertical mode, they are arranged across (the maximum number of columns is limited by TileViewItemOptions.ColumnCount) then down.

Kanban

Kanban layout mode. Tiles are combined in groups based on group column values (TileViewColumns.GroupColumn). Each group is scrolled independently.

List

A multi-column or multi-row list of stretching tiles.

If the TileViewItemOptions.Orientation setting is Horizontal, tiles are arranged in one or more rows while stretching to fit the View’s height. The number of rows is specified by the TileViewItemOptions.RowCount property.

If the TileViewItemOptions.Orientation setting is Vertical, tiles are arranged in one or more columns while stretching to fit the View’s width. The number of columns is specified by the TileViewItemOptions.ColumnCount property.

Related API Members

The following properties accept/return TileViewLayoutMode values:

Remarks

Values provided by the TileViewLayoutMode enumeration are used to initialize the TileViewItemOptions.LayoutMode property.

See Also