Skip to main content
All docs
V23.2

GroupItemFluentBuilder.GetGroupItem(Parameter) Method

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

Namespace: DevExpress.XtraReports.Parameters

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

NuGet Package: DevExpress.Printing.Core

Declaration

public GroupItemFluentBuilder GetGroupItem(
    Parameter parameter
)

Parameters

Name Type Description
parameter Parameter

A report parameter object.

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(report.Parameters[0])
        .WithTitleVisible(false)
.End();
Initial panel Modified panel
Initial panel Modified panel
See Also