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

GroupItemFluentBuilder.RemoveGroupItem(String) Method

Removes a group that contains a parameter with the specified name.

Namespace: DevExpress.XtraReports.Parameters

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

NuGet Package: DevExpress.Printing.Core

Declaration

public GroupItemFluentBuilder RemoveGroupItem(
    string parameterName
)

Parameters

Name Type Description
parameterName String

A parameter name.

Returns

Type Description
GroupItemFluentBuilder

A builder, so you chain additional methods that customize the panel.

Example

using DevExpress.XtraReports.Parameters;
// ...
ParameterPanelFluentBuilder.Begin(report)
    .RemoveGroupItem("customer")
.End();
Initial panel Modified panel
Initial panel Modified panel
See Also