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

ASPxGridViewSettings.GroupFormat Property

Gets or sets the text pattern for group rows.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("{0}: {1} {2}")]
public string GroupFormat { get; set; }

Property Value

Type Default Description
String "{0}: {1} {2}"

A String value that specifies the text pattern for group rows.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to GroupFormat
ASP.NET Controls and MVC Extensions ASPxGridView
.Settings .GroupFormat
GridViewProperties
.Settings .GroupFormat
ASP.NET Bootstrap Controls BootstrapGridView
.Settings .GroupFormat
ASP.NET MVC Extensions GridViewSettings
.Settings .GroupFormat
GridViewSettings<RowType>
.Settings .GroupFormat
MVCxGridView
.Settings .GroupFormat
MVCxGridViewProperties
.Settings .GroupFormat

Remarks

The text pattern can include static text plus predefined placeholders. The {0} character sequence is the placeholder for the grouping column’s caption. The {1} sequence is the placeholder for the grouping column’s value which corresponds to the current group row. Finally, the {2} character sequence is the placeholder for the group row’s summary text.

See Also