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

GroupItemFluentBuilder.GetGroupItem(Parameter, Action<GroupItemFluentBuilder>) Method

Returns a builder for a group that contains the specified parameter. Applies a customization action to the group.

Namespace: DevExpress.XtraReports.Parameters

Assembly: DevExpress.Printing.v22.1.Core.dll

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

Declaration

public GroupItemFluentBuilder GetGroupItem(
    Parameter parameter,
    Action<GroupItemFluentBuilder> configuration
)

Parameters

Name Type Description
parameter Parameter

A report parameter object.

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