Compartir a través de


Shape.RegionChanged (Evento)

Se produce cuando cambia el valor de la propiedad Region.

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

Sintaxis

'Declaración
<BrowsableAttribute(True)> _
Public Event RegionChanged As EventHandler
[BrowsableAttribute(true)]
public event EventHandler RegionChanged
[BrowsableAttribute(true)]
public:
 event EventHandler^ RegionChanged {
    void add (EventHandler^ value);
    void remove (EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member RegionChanged : IEvent<EventHandler,
    EventArgs>
JScript no admite eventos.

Comentarios

Para obtener más información acerca de cómo controlar eventos, vea Utilizar eventos.

Ejemplos

En el ejemplo siguiente se muestra cómo responder al evento RegionChanged en un controlador de eventos.Este ejemplo requiere tener un control de OvalShape denominado OvalShape1 en un formulario.

Private Sub OvalShape1_RegionChanged() Handles OvalShape1.RegionChanged
    ' Force the shape to repaint.
    OvalShape1.Invalidate()
End Sub
private void ovalShape1_RegionChanged(object sender, System.EventArgs e)
{
    // Force the shape to repaint.
    ovalShape1.Invalidate();
}

Seguridad de .NET Framework

Vea también

Referencia

Shape Clase

Microsoft.VisualBasic.PowerPacks (Espacio de nombres)

Otros recursos

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

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

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