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

GroupItemFluentBuilder.WithBorderVisible(Boolean) Method

Specifies whether group borders are visible.

Namespace: DevExpress.XtraReports.Parameters

Assembly: DevExpress.Printing.v21.2.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