mobilecontrols-devexpress-dot-xamarinforms-dot-datagrid-dot-gridcolumn-60932b7f.md
Gets or sets the template that defines the visual representation of a group row caption.
Namespace : DevExpress.XamarinForms.DataGrid
Assembly : DevExpress.XamarinForms.Grid.dll
NuGet Package : DevExpress.XamarinForms.Grid
public DataTemplate GroupCaptionTemplate { get; set; }
| Type | Description |
|---|---|
| DataTemplate |
A template for group row captions.
|
When data is grouped, the grid displays group rows to separate groups of data rows. End users can tap group rows to expand and collapse groups.
A group row displays the following elements:
The following properties allow you to set a template that specifies the visual structure of a group row caption (in the default structure of a group row, a caption includes a column caption and data value):
You can also define templates for a group summary (DataGridView.GroupSummaryTemplate) or the whole group row (DataGridView.GroupRowTemplate).
The GroupRowData class specifies the binding context for these templates.
See Also