Skip to main content
A newer version of this page is available. .
All docs
V22.1

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.v22.1.Core.dll

NuGet Packages: DevExpress.Printing.Core, DevExpress.Win.Dashboard.Design

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