EndPlot イベント(ActiveX)

ドキュメントがプリンタに送られた後に開始されます。

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

構文と要素

VBA:

object.EndPlot(DrawingName)
object

タイプ: ApplicationDocument

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

DrawingName

タイプ: 文字列; ハンドラへの入力

印刷された図面の名前

注意

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

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