Skip to main content
All docs
V23.2

GroupItemFluentBuilder.GetGroupItem(String) Method

Returns a builder for a group that contains a parameter with the specified name.

Namespace: DevExpress.XtraReports.Parameters

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

public GroupItemFluentBuilder GetGroupItem(
    string parameterName
)

Parameters

Name Type Description
parameterName String

A parameter name.

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")
        .WithTitleVisible(false)
.End();
Initial panel Modified panel
Initial panel Modified panel
See Also