AutoCAD が図面の保存を完了したときに開始されます。
サポートされているプラットフォーム: Windows のみ
VBA:
object.EndSave(Filename)
タイプ: Application
有効なコンテナ オブジェクトを評価するオブジェクト式この場合、有効なコンテナはアプリケーションだけです。
タイプ: 文字列
保存されたファイルの名前
VBA:
Private Sub AcadDocument_EndSave(ByVal FileName As String)
' This example intercepts a drawing EndSave event.
'
' This event is triggered when a drawing finishes a save request.
'
' To trigger this example event: Save an open drawing and wait for the save to complete
' Use the "FileName" variable to determine where the drawing file was saved
MsgBox "A drawing has just been saved to: " & FileName
End Sub
Visual LISP:
Not available