Skip to main content
All docs
V25.1
  • GroupItemFluentBuilder.GetParameterItem(String, Action<ParameterItemFluentBuilder>) Method

    Applies a customization action to the parameter with the specified name.

    Namespace: DevExpress.XtraReports.Parameters

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

    NuGet Package: DevExpress.Printing.Core

    Declaration

    public GroupItemFluentBuilder GetParameterItem(
        string parameterName,
        Action<ParameterItemFluentBuilder> configuration
    )

    Parameters

    Name Type Description
    parameterName String

    A parameter name.

    configuration Action<ParameterItemFluentBuilder>

    A customization action.

    Returns

    Type Description
    GroupItemFluentBuilder

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

    Example

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