リサイズはクリックかドラッグ

ApplicationShapeChanged イベント

図形が変更されると発生します。

名前空間:  RootPro.RootProCAD
アセンブリ:  RootPro.RootProCAD.Library (in RootPro.RootProCAD.Library.dll) バージョン: 12.0.0.0 (12.0.0.0)
構文
public event ShapeEventHandler ShapeChanged

型: RootPro.RootProCADShapeEventHandler
解説
イベントデータを格納している ShapeEventArgs をキャストして、ShapeChangedEventArgs のデータを取得することができます。
C#
private void AppAddIn_Startup(object sender, EventArgs e)
{
    ShapeChanged += AppAddIn_ShapeChanged;
}

private void AppAddIn_ShapeChanged(object sender, ShapeEventArgs e)
{
    ShapeChangedEventArgs ce = (ShapeChangedEventArgs)e;

    Shape newShape = ce.Shape;
    Shape oldShape = ce.OldShape;

    if (newShape != null && oldShape != null)
    {
        if (newShape.LayerID != oldShape.LayerID)
            MessageBox.Show("Layer of shape has been changed!");
    }
}
関連項目