LineShape.StartPointChanged Event
Occurs when the StartPoint property value changes.
Namespace: Microsoft.VisualBasic.PowerPacks
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)
Syntax
'Declaration
<BrowsableAttribute(True)> _
Public Event StartPointChanged As EventHandler
'Usage
Dim instance As LineShape
Dim handler As EventHandler
AddHandler instance.StartPointChanged, handler
[BrowsableAttribute(true)]
public event EventHandler StartPointChanged
[BrowsableAttribute(true)]
public:
event EventHandler^ StartPointChanged {
void add (EventHandler^ value);
void remove (EventHandler^ value);
}
JScript does not support events.
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 Consuming Events.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualBasic.PowerPacks Namespace
Other Resources
How to: Draw Shapes with the OvalShape and RectangleShape Controls (Visual Studio)
How to: Draw Lines with the LineShape Control (Visual Studio)