windowsforms-devexpress-dot-xtragrid-dot-views-dot-tile-dot-tileviewitemoptions-536a2ad1.md
Gets or sets whether the tile groups’ captions should be visible.
Namespace : DevExpress.XtraGrid.Views.Tile
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(true)]
[XtraSerializableProperty]
public bool ShowGroupText { get; set; }
<XtraSerializableProperty>
<DefaultValue(True)>
Public Property ShowGroupText As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true if the tile groups’ captions should be visible; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to ShowGroupText |
|---|---|
| TileView |
.OptionsTiles .ShowGroupText
|
Tiles within the TileView can be grouped against the grid column, assigned to the GroupColumn property accessible via the TileView.ColumnSet properties section. Group captions, displayed above tiles, consist of a group column caption (visible only if the OptionsColumn.ShowCaption property equals true ) and a group column value, separated by a colon character. You can customize these captions by accessing appearance settings available through the TileView.Appearance.GroupText property. The figure below illustrates two customized group captions.
See Also