Control.ResizeRedraw Propiedad
Definición
Obtiene o establece un valor que indica si el control vuelve a dibujarse automáticamente cuando cambia de tamaño.Gets or sets a value indicating whether the control redraws itself when resized.
protected:
property bool ResizeRedraw { bool get(); void set(bool value); };
protected bool ResizeRedraw { get; set; }
member this.ResizeRedraw : bool with get, set
Protected Property ResizeRedraw As Boolean
Valor de propiedad
true
si el control vuelve a dibujarse automáticamente cuando cambia de tamaño; en caso contrario, false
.true
if the control redraws itself when resized; otherwise, false
.
Comentarios
El ResizeRedraw valor de propiedad es equivalente al valor devuelto del GetStyle método al pasar el ControlStyles.ResizeRedraw valor como un parámetro.The ResizeRedraw property value is equivalent to the return value of the GetStyle method when passing in the ControlStyles.ResizeRedraw value as a parameter.