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

TileViewItemOptions.GroupTextPadding Property

Gets or sets the amount of empty space around a group header text (see TileViewColumns.GroupColumn).

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

[XtraSerializableProperty]
public Padding GroupTextPadding { get; set; }

Property Value

Type Description
Padding

A Padding structure that specifies the amount of empty space around a group header text.

Property Paths

You can access this nested property as listed below:

Object Type Path to GroupTextPadding
TileView
.OptionsTiles.GroupTextPadding

Remarks

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).

TileView-GroupTextPadding-L30T40B20

See Also