Skip to main content
A newer version of this page is available. .
All docs
V21.2

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.v21.2.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
Initial panel Modified panel
See Also