継続して印刷ログを保存するかどうかを指定します。
サポートされているプラットフォーム: Windows のみ
読み込み専用: いいえ
タイプ: ブール型
このプロパティは AutoCAD[オプション]ダイアログ ボックスで「継続的に印刷ログを保存」と「印刷ごとに1つのログを保存」に設定するのと同等です。
VBA:
Sub Example_ContinuousPlotLog() ' This example changes the AutoCAD Options dialog box ' to specify one log per plot. Dim MyPreference As AcadPreferencesOutput Set MyPreference = AcadApplication.preferences.Output MyPreference.ContinuousPlotLog = False End Sub
Visual LISP:
(vl-load-com) (defun c:Example_ContinuousPlotLog() ;; This example changes the AutoCAD Options dialog box ;; to specify one log per plot. (setq acadObj (vlax-get-acad-object)) (setq preferences (vla-get-Preferences acadObj)) (setq MyPreference (vla-get-Output preferences)) (vla-put-ContinuousPlotLog MyPreference :vlax-false) )