GroupItemFluentBuilder.WithBorderVisible(Boolean) Method
In This Article
Specifies whether group borders are visible.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
public GroupItemFluentBuilder WithBorderVisible(
bool borderVisible
)
#Parameters
Name | Type | Description |
---|---|---|
border |
Boolean | true, to make group borders visible; otherwise, false. |
#Returns
Type | Description |
---|---|
Group |
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();
border |
border |
---|---|
![]() |
![]() |
See Also