Skip to main content
All docs
V25.1
  • GroupItemFluentBuilder.WithBorderVisible(Boolean) Method

    Specifies whether group borders are visible.

    Namespace: DevExpress.XtraReports.Parameters

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

    NuGet Package: DevExpress.Printing.Core

    Declaration

    public GroupItemFluentBuilder WithBorderVisible(
        bool borderVisible
    )

    Parameters

    Name Type Description
    borderVisible Boolean

    true, to make group borders visible; otherwise, false.

    Returns

    Type Description
    GroupItemFluentBuilder

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

    Example

    using DevExpress.XtraReports.Parameters;
    // ...
    using Orientation = DevExpress.XtraReports.Parameters.Orientation;
    // ...
    ParameterPanelFluentBuilder.Begin(report)
        .AddGroupItem(g => g
            .AddParameterItem(report.Parameters[0], p0 => p0
                .WithLabelOrientation(Orientation.Vertical))
            .AddParameterItem(report.Parameters[1], p1 => p1
                .WithLabelOrientation(Orientation.Vertical))
            .WithTitle("Select a customer")
            .WithOrientation(Orientation.Horizontal)
            .WithBorderVisible(false))
    .End();
    
    borderVisible = true (Default) borderVisible = false
    borderVisible = true (Default) borderVisible = false
    See Also