ドキュメントがプリンタに送られた後に開始されます。
サポートされているプラットフォーム: Windows のみ
VBA:
object.EndPlot(DrawingName)
タイプ: Application、Document
有効なコンテナ オブジェクトを評価するオブジェクト式この場合、有効なコンテナはアプリケーションとドキュメントです。
タイプ: 文字列; ハンドラへの入力
印刷された図面の名前
モーダル ダイアログが表示されている間、イベントは発生しません。
VBA:
Private Sub AcadDocument_EndPlot(ByVal DrawingName As String) ' This example intercepts a drawing EndPlot event. ' ' This event is triggered when a drawing finishes a plot request. ' ' To trigger this example event: Plot an open drawing and wait for the plot to finish ' Use the "DrawingName" variable to determine which drawing just finished plotting MsgBox "A drawing has just finished a plot request!" End Sub
Visual LISP:
Not available