LineShape.EndPointChanged Event

 

Occurs when the EndPoint property value changes.

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

Syntax

[BrowsableAttribute(true)]
public event EventHandler EndPointChanged
public:
[BrowsableAttribute(true)]
event EventHandler^ EndPointChanged {
    void add(EventHandler^ value);
    void remove(EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member EndPointChanged : IEvent<EventHandler,
    EventArgs>
<BrowsableAttribute(True)>
Public Event EndPointChanged As EventHandler

Remarks

Handle this event to perform actions when the X2 or Y2 property value of a LineShape control is changed at run time. For more information about handling events, see Handling and Raising Events.

See Also

ShapeContainer
Shape
LineShape Class
Microsoft.VisualBasic.PowerPacks Namespace
How to: Draw Shapes with the OvalShape and RectangleShape Controls (Visual Studio)
How to: Draw Lines with the LineShape Control (Visual Studio)
Introduction to the Line and Shape Controls (Visual Studio)

Return to top