Guest User

Untitled

a guest
Jul 17th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. private void button_Click(object sender, EventArgs e)
  2. {
  3. app = new GcadApplication();
  4. app.Visible = true;
  5. app.ActiveDocument.BeginSave += new _DGcadDocumentEvents_BeginSaveEventHandler(this.Save);
  6. }
  7.  
  8. private void Save(string fileName)
  9. {
  10. // イベント処理
  11. //(省略)
  12. }
Add Comment
Please, Sign In to add comment