Proprietà SimpleShape.Bounds
Ottiene o imposta la dimensione e la posizione della forma in pixel, 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: System.Drawing.Rectangle
In Rectangle in pixel, al controllo padre, che rappresenta la dimensione e la posizione della forma.
Note
È possibile chiamare SetBounds metodo per modificare Bounds proprietà in un'unica operazione.
Poiché SimpleShape non dispone dell'area non client, Bounds e ClientRectangle le proprietà sono identiche.
Esempi
Nell'esempio seguente viene illustrato come utilizzare SetBounds metodo per modificare Bounds proprietà di una forma.In particolare, la forma viene spostata verso l'angolo superiore sinistro del form e viene modificato in un quadrato.Questo esempio presuppone che l'utente abbia a RectangleShape controllare RectangleShape1 denominato 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
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.
Vedere anche
Riferimenti
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)