GroupItemFluentBuilder.GetGroupItem(String, Action<GroupItemFluentBuilder>) Method
Returns a builder for a group that contains a parameter with the specified name. Applies a customization action to the group.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v25.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
public GroupItemFluentBuilder GetGroupItem(
string parameterName,
Action<GroupItemFluentBuilder> configuration
)
Parameters
| Name | Type | Description |
|---|---|---|
| parameterName | String | A parameter name. |
| configuration | Action<GroupItemFluentBuilder> | A customization action. |
Returns
| Type | Description |
|---|---|
| GroupItemFluentBuilder | A group builder, so you can chain methods that customize the group. |
Example
using DevExpress.XtraReports.Parameters;
// ...
ParameterPanelFluentBuilder.Begin(report)
.GetGroupItem("customer", g => g
.WithTitleVisible(false))
.End();
| Initial panel | Modified panel |
|---|---|
![]() |
![]() |
See Also

