Skip to main content
A newer version of this page is available. .

XRCrossBandBox.Borders Property

Specifies a set of borders (top, right, bottom, left) that should be visible for the control.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v18.2.dll

Declaration

[SRCategory(ReportStringId.CatAppearance)]
[DefaultValue(BorderSide.All)]
public override BorderSide Borders { get; set; }

Property Value

Type Default Description
BorderSide **All**

A BorderSide enumeration value or combination of values, specifying a set of visible borders.

Available values:

Name Description
None

No borders are applied to a brick.

Left

Applies the left border to a brick.

Top

Applies the top border to a brick.

Right

Applies the right border to a brick.

Bottom

Applies the bottom border to a brick.

All

Applies all borders to a brick.

Remarks

The Borders property specifies which borders of the control should be visible, while the border’s color is specified by the XRControl.BorderColor property, and their width is specified by the XRCrossBandBox.BorderWidth property.

In addition, a cross-band control’s appearance can be determined by any formatting rules applied to this control. For more information on customizing a control’s appearance, refer to the Conditionally Changing a Control’s Appearance topic.

See Also