SimpleShape.FillColor, propriété
Obtient ou définit la couleur qui est utilisée pour remplir la forme.
Espace de noms : Microsoft.VisualBasic.PowerPacks
Assembly : Microsoft.VisualBasic.PowerPacks.Vs (dans Microsoft.VisualBasic.PowerPacks.Vs.dll)
Syntaxe
'Déclaration
<BrowsableAttribute(True)> _
Public Property FillColor As Color
[BrowsableAttribute(true)]
public Color FillColor { get; set; }
[BrowsableAttribute(true)]
public:
property Color FillColor {
Color get ();
void set (Color value);
}
[<BrowsableAttribute(true)>]
member FillColor : Color with get, set
function get FillColor () : Color
function set FillColor (value : Color)
Valeur de propriété
Type : Color
Color qui est utilisé pour remplir la forme.
Notes
Le FillColor propriété n'a aucun effet lorsque la FillStyle est définie sur Transparent. Si les deux le BackColor et FillColor sont définies et FillStyle est définie sur Solid, FillColor substitue BackColor.
Pour toutes les FillStyle énumérations à l'exception de Solid et Transparent, FillColor est utilisé comme couleur pour le modèle et BackColor est utilisé comme couleur d'arrière-plan.
Exemples
L'exemple suivant montre comment utiliser le FillColor propriété à modifier l'apparence d'une forme. Cet exemple suppose que vous avez une OvalShape OvalShape1 contrôle sur un formulaire.
Private Sub OvalShape1_Click() 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;
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
Microsoft.VisualBasic.PowerPacks, espace de noms
Autres ressources
Introduction aux contrôles Line et Shape (Visual Studio)
Comment : dessiner des lignes avec le contrôle LineShape (Visual Studio)
Comment : dessiner des formes avec les contrôles OvalShape et RectangleShape (Visual Studio)