Back to Devexpress

BrickGraphics.BorderColor Property

corelibraries-devexpress-dot-xtraprinting-dot-brickgraphics-080a38c3.md

latest3.0 KB
Original Source

BrickGraphics.BorderColor Property

Specifies the border color for the current BrickGraphics object.

Namespace : DevExpress.XtraPrinting

Assembly : DevExpress.Printing.v25.2.Core.dll

NuGet Package : DevExpress.Printing.Core

Declaration

csharp
public Color BorderColor { get; set; }
vb
Public Property BorderColor As Color

Property Value

TypeDescription
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

csharp
// Set the border color to Black.
g.BorderColor = Color.Black;

reporting-winforms-handle-link-events/CS/UseLinkEvents/Form1.cs#L77

csharp
e.Graph.BackColor = Color.DeepSkyBlue;
e.Graph.BorderColor = Color.MidnightBlue;

reporting-printing-library-get-started/VB/Form1.vb#L110

vb
' Set the border color to Black.
g.BorderColor = Color.Black

reporting-winforms-handle-link-events/VB/UseLinkEvents/Form1.vb#L81

vb
e.Graph.BackColor = Color.DeepSkyBlue
e.Graph.BorderColor = Color.MidnightBlue

See Also

BorderWidth

BrickGraphics Class

BrickGraphics Members

DevExpress.XtraPrinting Namespace