GroupItemFluentBuilder.BeginGroupItem(String) Method
In This Article
Creates a group, sets its title, and begins group customization.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
public GroupItemFluentBuilder BeginGroupItem(
string title = ""
)
#Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
title | String | String. |
A group title. |
#Returns
Type | Description |
---|---|
Group |
A group builder, so you can chain additional methods that customize the group. |
#Example
using DevExpress.XtraReports.Parameters;
// ...
ParameterPanelFluentBuilder.Begin(report)
.BeginGroupItem("Select a customer")
.BeginParameterItem(report.Parameters[0])
.EndParameterItem()
.BeginParameterItem(report.Parameters[1])
.EndParameterItem()
.EndGroupItem()
.End();
Default panel | Panel with a group |
---|---|
![]() |
![]() |
See Also