Condividi tramite


Proprietà SimpleShape.Bounds

Ottiene o imposta la dimensione e la posizione della forma, in pixel, rispetto al controllo padre.

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

Sintassi

'Dichiarazione
<BrowsableAttribute(False)> _
Public Overridable Property Bounds As Rectangle
[BrowsableAttribute(false)]
public virtual Rectangle Bounds { get; set; }
[BrowsableAttribute(false)]
public:
virtual property Rectangle Bounds {
    Rectangle get ();
    void set (Rectangle value);
}
[<BrowsableAttribute(false)>]
abstract Bounds : Rectangle with get, set
[<BrowsableAttribute(false)>]
override Bounds : Rectangle with get, set
function get Bounds () : Rectangle 
function set Bounds (value : Rectangle)

Valore proprietà

Tipo: Rectangle
Oggetto Rectangle in pixel, relativo al controllo padre, che rappresenta la dimensione e la posizione della forma.

Note

È possibile chiamare il SetBounds () per modificare il Bounds proprietà in un'unica operazione.

Poiché SimpleShape è presente un'area non client, il Bounds e ClientRectangle proprietà sono uguali.

Esempi

Nell'esempio seguente viene illustrato come utilizzare il SetBounds () per modificare il Bounds proprietà di una forma. In particolare, la forma viene spostata nell'angolo superiore sinistro del form e modificata in un quadrato. Si suppone di disporre di un RectangleShape controllo denominato RectangleShape1 in un form.

Private Sub RectangleShape1_Click() Handles RectangleShape1.Click
    ' Change the Bounds property.
    RectangleShape1.SetBounds(0, 0, 100, 100)
End Sub
private void rectangleShape1_Click(System.Object sender, System.EventArgs e)
{
    // Change the Bounds property.
    rectangleShape1.SetBounds(0, 0, 100, 100);
}

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)