LineShape.OnStartPointChanged 方法

引发 StartPointChanged 事件。

命名空间:  Microsoft.VisualBasic.PowerPacks
程序集:  Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)

语法

声明
Protected Overridable Sub OnStartPointChanged ( _
    e As EventArgs _
)
protected virtual void OnStartPointChanged(
    EventArgs e
)
protected:
virtual void OnStartPointChanged(
    EventArgs^ e
)
abstract OnStartPointChanged : 
        e:EventArgs -> unit 
override OnStartPointChanged : 
        e:EventArgs -> unit 
protected function OnStartPointChanged(
    e : EventArgs
)

参数

备注

引发事件时会通过委托调用事件处理程序。 有关更多信息,请参见 引发事件

OnStartPointChanged 方法还允许派生类对事件进行处理而不必附加委托。 这是在派生类中处理事件的首选技术。

对继承者的说明

在派生类中重写 OnStartPointChanged 时,确保调用基类的 OnStartPointChanged 方法,以使注册的委托能接收事件。

.NET Framework 安全性

请参见

参考

LineShape 类

Microsoft.VisualBasic.PowerPacks 命名空间

ShapeContainer

Shape

其他资源

如何:使用 OvalShape 和 RectangleShape 控件绘制形状 (Visual Studio)

如何:使用 LineShape 控件绘制直线 (Visual Studio)

Line 和 Shape 控件简介 (Visual Studio)