corelibraries-devexpress-dot-xtraprinting-dot-brickgraphics-080a38c3.md
Specifies the border color for the current BrickGraphics object.
Namespace : DevExpress.XtraPrinting
Assembly : DevExpress.Printing.v25.2.Core.dll
NuGet Package : DevExpress.Printing.Core
public Color BorderColor { get; set; }
Public Property BorderColor As Color
| Type | Description |
|---|---|
| Color |
The border color for the current BrickGraphics object.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the BorderColor property.
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.
reporting-printing-library-get-started/CS/Form1.cs#L93
// Set the border color to Black.
g.BorderColor = Color.Black;
reporting-winforms-handle-link-events/CS/UseLinkEvents/Form1.cs#L77
e.Graph.BackColor = Color.DeepSkyBlue;
e.Graph.BorderColor = Color.MidnightBlue;
reporting-printing-library-get-started/VB/Form1.vb#L110
' Set the border color to Black.
g.BorderColor = Color.Black
reporting-winforms-handle-link-events/VB/UseLinkEvents/Form1.vb#L81
e.Graph.BackColor = Color.DeepSkyBlue
e.Graph.BorderColor = Color.MidnightBlue
See Also