Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

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

#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