EndSave イベント(ActiveX)

AutoCAD が図面の保存を完了したときに開始されます。

サポートされているプラットフォーム: Windows のみ

構文と要素

VBA:

object.EndSave(Filename)
object

タイプ: Application

有効なコンテナ オブジェクトを評価するオブジェクト式この場合、有効なコンテナはアプリケーションだけです。

Filename

タイプ: 文字列

保存されたファイルの名前

注意

BeginSave イベントの後、AutoCAD が図面の保存を完了すると、 EndSave イベントが続きます。

モーダル ダイアログが表示されている間、イベントは発生しません。

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