Condividi tramite


Proprietà SimpleShape.Width

Ottiene o imposta la larghezza della forma.

Spazio dei nomi:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Sintassi

'Dichiarazione
<BrowsableAttribute(False)> _
Public Property Width As Integer
[BrowsableAttribute(false)]
public int Width { get; set; }
[BrowsableAttribute(false)]
public:
property int Width {
    int get ();
    void set (int value);
}
[<BrowsableAttribute(false)>]
member Width : int with get, set
function get Width () : int
function set Width (value : int)

Valore proprietà

Tipo: System.Int32
La larghezza della forma in pixel.

Note

Modifiche apportate a Width e Left i valori delle proprietà causano Right valore della proprietà della forma da modificare.

È possibile utilizzare Size proprietà per modificare entrambe Height e Width le proprietà, o utilizzano SetBounds metodo per modificare le dimensioni e la posizione di una forma in una sola istruzione.

Esempi

Nell'esempio seguente viene illustrato come utilizzare Height e Width proprietà per modificare la dimensione di una forma.Questo esempio presuppone che l'utente abbia OvalShape controllare OvalShape1 denominato in un form.

Private Sub OvalShape1_Click() Handles OvalShape1.Click
    ' Set the height.
    OvalShape1.Height = OvalShape1.Height + 50
    ' Set the width the same as the height to make it a circle.
    OvalShape1.Width = OvalShape1.Height
End Sub
private void ovalShape1_Click(System.Object sender, System.EventArgs e)
{
    // Set the height.
    ovalShape1.Height = ovalShape1.Height + 50;
    // Set the width the same as the height to make it a circle.
    ovalShape1.Width = ovalShape1.Height;
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

SimpleShape Classe

Spazio dei nomi Microsoft.VisualBasic.PowerPacks

Altre risorse

Introduzione ai controlli Line e Shape (Visual Studio)

Procedura: disegnare linee con il controllo LineShape (Visual Studio)

Procedura: disegnare forme con i controlli OvalShape e RectangleShape (Visual Studio)