Shape.BorderColor-Eigenschaft
Aktualisiert: November 2007
Ruft die Rahmenfarbe eines Shape- oder Line-Steuerelements ab oder legt diese fest.
Namespace: Microsoft.VisualBasic.PowerPacks
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)
Syntax
'Declaration
<BrowsableAttribute(True)> _
Public Property BorderColor As Color
'Usage
Dim instance As Shape
Dim value As Color
value = instance.BorderColor
instance.BorderColor = value
[BrowsableAttribute(true)]
public Color BorderColor { get; set; }
[BrowsableAttribute(true)]
public:
property Color BorderColor {
Color get ();
void set (Color value);
}
public function get BorderColor () : Color
public function set BorderColor (value : Color)
Eigenschaftenwert
Typ: System.Drawing.Color
Eine Color-Struktur, die die Rahmenfarbe der Form oder Linie darstellt. Der Standardwert ist der Wert von DefaultBorderColor.
Hinweise
Für ein LineShape-Steuerelement stellt BorderColor die Farbe der Linie dar.
Für ein OvalShape-Steuerelement oder RectangleShape-Steuerelement stellt BorderColor die Farbe der äußeren Ränder der Form dar.
Beispiele
Im folgenden Beispiel wird veranschaulicht, wie die Eigenschaften BorderColor, BorderStyle und BorderWidth für ein OvalShape-Steuerelement festgelegt werden, das ein Oval mit einem 3 Pixel breiten roten, gestrichelten Rahmen darstellt.
Dim OvalShape1 As New OvalShape
Dim canvas As New ShapeContainer
' Set the form as the parent of the ShapeContainer.
canvas.Parent = Me
' Set the ShapeContainer as the parent of the OvalShape.
OvalShape1.Parent = canvas
' Change the color of the border to red.
OvalShape1.BorderColor = Color.Red
' Change the style of the border to dotted.
OvalShape1.BorderStyle = Drawing2D.DashStyle.Dot
' Change the thickness of the border to 3 pixels.
OvalShape1.BorderWidth = 3
OvalShape1.Size = New Size(300, 200)
OvalShape ovalShape1 = new OvalShape();
ShapeContainer canvas = new ShapeContainer();
// Set the form as the parent of the ShapeContainer.
canvas.Parent = this;
// Set the ShapeContainer as the parent of the OvalShape.
ovalShape1.Parent = canvas;
// Change the color of the border to red.
ovalShape1.BorderColor = Color.Red;
// Change the style of the border to dotted.
ovalShape1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Dot;
// Change the thickness of the border to 3 pixels.
ovalShape1.BorderWidth = 3;
ovalShape1.Size = new Size(300, 200);
Berechtigungen
- Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter Verwenden von Bibliotheken aus teilweise vertrauenswürdigem Code.
Siehe auch
Referenz
Microsoft.VisualBasic.PowerPacks-Namespace
Weitere Ressourcen
Gewusst wie: Zeichnen von Linien mit dem LineShape-Steuerelement (Visual Studio)
Einführung in das Line-Steuerelement und das Shape-Steuerelement (Visual Studio)