Skip to main content
All docs
V25.1
  • GroupItemFluentBuilder.GetGroupItem(Parameter) Method

    Returns a builder for a group that contains the specified parameter.

    Namespace: DevExpress.XtraReports.Parameters

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

    NuGet Package: DevExpress.Printing.Core

    Declaration

    public GroupItemFluentBuilder GetGroupItem(
        Parameter parameter
    )

    Parameters

    Name Type Description
    parameter Parameter

    A report parameter object.

    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])
            .WithTitleVisible(false)
    .End();
    
    Initial panel Modified panel
    Initial panel Modified panel
    See Also