Skip to main content

TileViewItem Class

A tile within a TileView.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v23.2.dll

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

Declaration

public class TileViewItem :
    TileItem,
    IRowConditionFormatProvider

The following members return TileViewItem objects:

Remarks

TileViewItem class objects represent grid records as tiles within a TileView. Each tile is drawn according to the tile template stored within the TileView.TileTemplate property. This template allows you to select which column’s data should be displayed and arrange these content blocks in the tile. Tiles also support grouping based on the GroupColumn property accessible via the TileView.ColumnSet properties section.

TileView - Houses Grouped 1

To select which grid column’s data should be visible within your tiles, add the required TileViewItemElement objects number and bind them to the target grid columns by using their TileViewItemElement.Column property. See the Tile View topic to learn more.

See Also