印刷とパブリッシュのログを自動的に保存するかどうかを指定します。
サポートされているプラットフォーム: Windows のみ
読み込み専用: いいえ
タイプ: ブール型
印刷時やパブリッシュ時にログ ファイルを自動的に作成するかどうかをコントロールします。
このプロパティは AutoCAD の[オプション]ダイアログ ボックスの[印刷とパブリッシュのログ ファイルを自動的に保存]に相当します。
VBA:
Sub Example_AutomaticPlotLog()
' This example sets the AutoCAD Options dialog box
' setting Automatically Save Plot and Publish Log to True.
Dim MyPreference As AcadPreferencesOutput
Set MyPreference = AcadApplication.preferences.Output
MyPreference.AutomaticPlotLog = True
End Sub
Visual LISP:
(vl-load-com)
(defun c:Example_AutomaticPlotLog()
;; This example sets the AutoCAD Options dialog box
;; setting Automatically Save Plot and Publish Log to True.
(setq acadObj (vlax-get-acad-object))
(setq preferences (vla-get-Preferences acadObj))
(vla-put-AutomaticPlotLog (vla-get-Output preferences) :vlax-true)
)