BeginPlot イベント(ActiveX)

AutoCAD が図面の印刷要求を受け取った直後に開始されます。

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

構文と要素

VBA:

object.BeginPlot(DrawingName)
object

タイプ: ApplicationDocument

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

DrawingName

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

プリンタへ送られる図面の名前

注意

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

VBA:

Private Sub AcadDocument_BeginPlot(ByVal DrawingName As String)
    ' This example intercepts a drawing BeginPlot event.
    '
    ' This event is triggered when a drawing receives a plot request.
    '
    ' To trigger this example event: Plot an open drawing

    ' Use the "DrawingName" variable to determine which drawing is about to plot
    MsgBox "A drawing has just received a request to plot for: " & DrawingName

End Sub

Visual LISP:

Not available