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

GroupItemFluentBuilder.GetParameterItem(String) Method

Returns a parameter builder. Accepts a parameter name.

Namespace: DevExpress.XtraReports.Parameters

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

NuGet Package: DevExpress.Printing.Core

Declaration

public ParameterItemFluentBuilder GetParameterItem(
    string parameterName
)

Parameters

Name Type Description
parameterName String

A parameter name.

Returns

Type Description
ParameterItemFluentBuilder

A parameter builder, so you chain methods that customize the parameter editor.

Example

using DevExpress.XtraReports.Parameters;
// ...
using Orientation = DevExpress.XtraReports.Parameters.Orientation;
// ...
ParameterPanelFluentBuilder.Begin(report)
    .GetParameterItem("customer")
        .WithLabelOrientation(Orientation.Horizontal)
    .EndParameterItem()
.End();
Initial panel Modified panel
Initial panel Modified panel
See Also