Skip to main content
All docs
V25.1
  • GroupItemFluentBuilder.BeginParameterItem(Parameter, Orientation) Method

    Adds a parameter editor to the UI and begins editor customization. Accepts a report parameter object.

    Namespace: DevExpress.XtraReports.Parameters

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

    NuGet Package: DevExpress.Printing.Core

    Declaration

    public ParameterItemFluentBuilder BeginParameterItem(
        Parameter parameter,
        Orientation labelOrientation = Orientation.Horizontal
    )

    Parameters

    Name Type Description
    parameter Parameter

    A report parameter object.

    Optional Parameters

    Name Type Default Description
    labelOrientation Orientation Horizontal

    Specifies label location relative to the editor.

    Returns

    Type Description
    ParameterItemFluentBuilder

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

    Example

    using DevExpress.XtraReports.Parameters;
    // ...
    using Orientation = DevExpress.XtraReports.Parameters.Orientation;
    // ...
    ParameterPanelFluentBuilder.Begin(report)
        .BeginParameterItem(report.Parameters[0], Orientation.Vertical)
        .EndParameterItem()
    .End();
    
    Default panel Panel with a customized parameter
    Default panel Panel with a customized parameter
    See Also