GroupItemFluentBuilder.WithTitle(String) Method
Specifies a group title.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v24.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
Parameters
Name | Type | Description |
---|---|---|
title | String | A group title. |
Returns
Type | Description |
---|---|
GroupItemFluentBuilder | A group builder, so you can chain additional methods that customize the group. |
Example
using DevExpress.XtraReports.Parameters;
// ...
ParameterPanelFluentBuilder.Begin(report)
.AddGroupItem(g => g
.WithTitle("Select a customer")
.AddParameterItem(report.Parameters[0])
.AddParameterItem(report.Parameters[1]))
.End();
Default panel | Panel with a group |
---|---|
See Also