Skip to main content
A newer version of this page is available. .

TileViewGroup Class

A group that hosts TileViewItems.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public class TileViewGroup :
    TileGroup,
    IScrollBarInfoOwner,
    ISupportAnimatedScroll

Remarks

TileViewGroup objects are created automatically based on the grouping currently applied to the TileView. To group tile items, assign a grid column to the GroupColumn property available via the TileView.ColumnSet properties section. All grid records whose cell values for the group column are the same will be grouped into a single TileViewGroup. The figure below illustrates tiles that display car features and are grouped by transmission type.

TileView - Cars Grouped

By default, groups display only cell values as group captions. You can also display group column captions by setting the group column’s OptionsColumn.ShowCaption property to true.

To customize group captions use the TileView.AppearanceGroupText property.

See the Tile View topic to learn more about groups.

See Also