SimpleShape.Resize Event

Occurs when the size of a shape is changed.

Namespace:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntax

'Declaration
<BrowsableAttribute(True)> _
Public Event Resize As EventHandler
'Usage
Dim instance As SimpleShape 
Dim handler As EventHandler 

AddHandler instance.Resize, handler
[BrowsableAttribute(true)]
public event EventHandler Resize
[BrowsableAttribute(true)]
public:
 event EventHandler^ Resize {
    void add (EventHandler^ value);
    void remove (EventHandler^ value);
}
JScript does not support events.

Remarks

This event is raised if the size of a shape is changed by either a programmatic modification or user interaction.

For more information about how to handle events, see Consuming Events.

Examples

The following example shows how to respond to the Resize event in an event handler. This example requires that you have two RectangleShape controls named RectangleShape1 and RectangleShape2 on a form.

Private Sub RectangleShape1_Resize(ByVal sender As Object, _
 ByVal e As System.EventArgs) Handles RectangleShape1.Resize
    ' If the second rectangle intersects with the first, move it. 
    If RectangleShape1.ClientRectangle.IntersectsWith( _
      RectangleShape2.ClientRectangle) Then
        RectangleShape2.Location = New Point(RectangleShape1.Right, _
          RectangleShape1.Bottom)
    End If 
End Sub
private void rectangleShape1_Resize(object sender, System.EventArgs e)
{
    // If the second rectangle intersects with the first, move it. 
    if (rectangleShape1.ClientRectangle.IntersectsWith(rectangleShape2.ClientRectangle))
    {
        rectangleShape2.Location = new Point(rectangleShape1.Right, 
            rectangleShape1.Bottom);
    }
}

.NET Framework Security

See Also

Reference

SimpleShape Class

SimpleShape Members

Microsoft.VisualBasic.PowerPacks Namespace

Other Resources

Introduction to the Line and Shape Controls (Visual Studio)

How to: Draw Lines with the LineShape Control (Visual Studio)

How to: Draw Shapes with the OvalShape and RectangleShape Controls (Visual Studio)