IJCAD 2015の起動・作図・終了をCOM(C#)を使って外部アプリケーションから操作しています。

ところが、以下のイベントが取れないのですが、どこか間違っているのでしょうか?

private void button_Click(object sender, EventArgs e)
{ 
    app = new GcadApplication();
    app.Visible = true;
    app.ActiveDocument.BeginSave += new _DGcadDocumentEvents_BeginSaveEventHandler(this.Save);
}

private void Save(string fileName) 
{
    // イベント処理
    //(省略)
}