windowsforms-devexpress-dot-xtragrid-dot-views-dot-tile-dot-tileviewitemoptions-99e2fa9c.md
Gets or sets the amount of empty space around a group header text (see TileViewColumns.GroupColumn).
Namespace : DevExpress.XtraGrid.Views.Tile
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[XtraSerializableProperty]
public Padding GroupTextPadding { get; set; }
<XtraSerializableProperty>
Public Property GroupTextPadding As Padding
| Type | Description |
|---|---|
| Padding |
A Padding structure that specifies the amount of empty space around a group header text.
|
You can access this nested property as listed below:
| Object Type | Path to GroupTextPadding |
|---|---|
| TileView |
.OptionsTiles .GroupTextPadding
|
You can group tiles by a data source field using the TileViewColumns.GroupColumn property. Each group of tiles is identified by a group header, provided that the TileViewItemOptions.ShowGroupText option is enabled. The GroupTextPadding and TileViewItemOptions.IndentBetweenGroups settings, accessible through the TileView.OptionsTiles property, allow you to adjust the spacing of a group header text.
The following image shows a Tile View with the GroupTextPadding property set to a custom Padding value (Left=30; Top=40; Bottom=20).
See Also