Compartir a través de


SimpleShape.Width (Propiedad)

obtiene o establece el ancho de la forma.

Espacio de nombres:  Microsoft.VisualBasic.PowerPacks
Ensamblado:  Microsoft.VisualBasic.PowerPacks.Vs (en Microsoft.VisualBasic.PowerPacks.Vs.dll)

Sintaxis

'Declaración
<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)

Valor de propiedad

Tipo: System.Int32
El ancho de forma en píxeles.

Comentarios

Los cambios realizados en los valores de propiedad de Width y de Left hacen que el valor de propiedad de Right de la forma al cambio.

Puede utilizar la propiedad de Size para cambiar Height y las propiedades de Width , o utilice el método de SetBounds para cambiar el tamaño y la ubicación de una forma en una sola instrucción.

Ejemplos

El ejemplo siguiente muestra cómo utilizar las propiedades de Height y de Width para cambiar el tamaño de una forma.Este ejemplo requiere tener un control de OvalShape denominado OvalShape1 en un formulario.

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;
}

Seguridad de .NET Framework

Vea también

Referencia

SimpleShape Clase

Microsoft.VisualBasic.PowerPacks (Espacio de nombres)

Otros recursos

Introducción a los controles de líneas y formas (Visual Studio)

Cómo: Dibujar líneas con el control LineShape (Visual Studio)

Cómo: Dibujar formas con los controles OvalShape y RectangleShape (Visual Studio)