AutoCAD が図面の印刷要求を受け取った直後に開始されます。
サポートされているプラットフォーム: Windows のみ
VBA:
object.BeginPlot(DrawingName)
タイプ: Application、Document
有効なコンテナ オブジェクトを評価するオブジェクト式この場合、有効なコンテナはアプリケーションとドキュメントです。
タイプ: 文字列; ハンドラへの入力
プリンタへ送られる図面の名前
モーダル ダイアログが表示されている間、イベントは発生しません。
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