SimpleShape.ClientSize (Propiedad)
Obtiene o establece el alto y el ancho del área de cliente de 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 ClientSize As Size
[BrowsableAttribute(false)]
public Size ClientSize { get; set; }
[BrowsableAttribute(false)]
public:
property Size ClientSize {
Size get ();
void set (Size value);
}
[<BrowsableAttribute(false)>]
member ClientSize : Size with get, set
function get ClientSize () : Size
function set ClientSize (value : Size)
Valor de propiedad
Tipo: System.Drawing.Size
Size que representa las dimensiones del área de cliente de forma.
Comentarios
Las propiedades de Width y de Height representan el ancho y el alto del área de cliente de la forma.Puede utilizar la propiedad de ClientSize para obtener el tamaño del área de cliente de forma para tareas como gráfico en la superficie de la forma.
Dado que SimpleShape no tiene área de no cliente, las propiedades de ClientSize y de Size son iguales.
Ejemplos
El ejemplo siguiente se muestra cómo utilizar la propiedad de ClientSize para cambiar el tamaño de un control de OvalShape .Este ejemplo requiere tener un control de OvalShape denominado OvalShape1 en un formulario.
Private Sub OvalShape1_Click() Handles OvalShape1.Click
' Declare a Size 20 pixels wider and taller than the current Size.
Dim sz As New System.Drawing.Size(OvalShape1.Width + 20,
OvalShape1.Height + 20)
' Change the ClientSize.
OvalShape1.ClientSize = sz
End Sub
private void ovalShape1_Click(System.Object sender, System.EventArgs e)
{
// Declare a Size 20 pixels wider and taller than the current Size.
System.Drawing.Size sz = new System.Drawing.Size(ovalShape1.Width+20,
ovalShape1.Height+20);
// Change the ClientSize.
ovalShape1.ClientSize = sz;
}
Seguridad de .NET Framework
- Plena confianza para el llamador inmediato. Un código de confianza parcial no puede utilizar este miembro. Para obtener más información, vea Utilizar bibliotecas de código que no es de plena confianza.
Vea también
Referencia
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)