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

BorderSide Enum

Specifies the borders displayed around a brick.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Data.v20.2.dll

NuGet Packages: DevExpress.Data, DevExpress.WindowsDesktop.Data

Declaration

[Flags]
[ResourceFinder(typeof(ResFinder))]
public enum BorderSide

Members

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

Use the BorderSide enumeration to draw borders around brick sides (any combination is possible). Side width is determined via the VisualBrick.BorderWidth property and its color is specified via the VisualBrick.BorderColor property.

Example

The following example demonstrates how to make the brick’s left and right borders visible. To do this it’s necesssary to set the BrickStyle.Sides property of the brick’s style to BorderSide.Left and BorderSide.Right.

using DevExpress.XtraPrinting;
// ...

myBrickStyle.Sides = BorderSide.Left | BorderSide.Right;

The following code snippets (auto-collected from DevExpress Examples) contain references to the BorderSide enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also