Form.MinimumSize Propiedad

Definición

Obtiene el mínimo tamaño al que puede ajustarse el formulario.

public:
 property System::Drawing::Size MinimumSize { System::Drawing::Size get(); void set(System::Drawing::Size value); };
public:
 virtual property System::Drawing::Size MinimumSize { System::Drawing::Size get(); void set(System::Drawing::Size value); };
public System.Drawing.Size MinimumSize { get; set; }
public override System.Drawing.Size MinimumSize { get; set; }
member this.MinimumSize : System.Drawing.Size with get, set
Public Property MinimumSize As Size
Public Overrides Property MinimumSize As Size

Valor de propiedad

Size que representa el tamaño mínimo del formulario.

Excepciones

Los valores del alto y del ancho dentro del objeto Size son menores que cero.

Comentarios

Esta propiedad permite limitar el tamaño de un formulario a un tamaño mínimo especificado. Puede usar esta característica para evitar que un usuario ajuste el tamaño de una ventana a un tamaño no deseado. Si esta propiedad se establece en un Size objeto de 0 en alto y 0 en ancho, el formulario no tendrá ningún tamaño mínimo más allá de los límites establecidos por Windows.

Se aplica a