SimpleShape.FillColor-Eigenschaft
Aktualisiert: November 2007
Ruft die Farbe ab, mit der die Form gefüllt wird, oder legt diese fest.
Namespace: Microsoft.VisualBasic.PowerPacks
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)
Syntax
<BrowsableAttribute(True)> _
Public Property FillColor As Color
Dim instance As SimpleShape
Dim value As Color
value = instance.FillColor
instance.FillColor = value
[BrowsableAttribute(true)]
public Color FillColor { get; set; }
[BrowsableAttribute(true)]
public:
property Color FillColor {
Color get ();
void set (Color value);
}
public function get FillColor () : Color
public function set FillColor (value : Color)
Eigenschaftenwert
Typ: System.Drawing.Color
Color, mit der die Form gefüllt wird.
Hinweise
Die FillColor-Eigenschaft hat keine Auswirkungen, wenn FillStyle auf Transparent festgelegt ist. Wenn sowohl BackColor als auch FillColor festgelegt sind und FillStyle auf Solid festgelegt ist, wird BackColor von FillColor überschrieben.
FillColor wird bei allen FillStyle-Enumerationen mit Ausnahme von Solid und Transparent als Farbe für das Muster verwendet. Als Hintergrundfarbe wird BackColor verwendet.
Beispiele
Im folgenden Beispiel wird veranschaulicht, wie Sie mit der FillColor-Eigenschaft die Darstellung einer Form ändern. Für dieses Beispiel müssen Sie über ein OvalShape-Steuerelement mit dem Namen OvalShape1 auf einem Formular verfügen.
Private Sub OvalShape1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles OvalShape1.Click
' Set the fill style.
OvalShape1.FillStyle = FillStyle.Solid
' Set the fill color.
OvalShape1.FillColor = Color.Red
' Set the gradient style.
OvalShape1.FillGradientStyle = FillGradientStyle.Central
' Set the gradient color.
OvalShape1.FillGradientColor = Color.Purple
End Sub
private void ovalShape1_Click(System.Object sender, System.EventArgs e)
{
// Set the fill style.
ovalShape1.FillStyle = FillStyle.Solid;
// Set the fill color.
ovalShape1.FillColor = Color.Red;
// Set the gradient style.
ovalShape1.FillGradientStyle = FillGradientStyle.Central;
// Set the gradient color.
ovalShape1.FillGradientColor = Color.Purple;
}
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
Einführung in das Line-Steuerelement und das Shape-Steuerelement (Visual Studio)
Gewusst wie: Zeichnen von Linien mit dem LineShape-Steuerelement (Visual Studio)