AutomaticPlotLog プロパティ(ActiveX)

印刷とパブリッシュのログを自動的に保存するかどうかを指定します。

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

構文と要素

VBA:

object.AutomaticPlotLog
object

タイプ: PreferencesOutput

このプロパティが適用されるオブジェクト。

プロパティの値

読み込み専用: いいえ

タイプ: ブール型

印刷時やパブリッシュ時にログ ファイルを自動的に作成するかどうかをコントロールします。

注意

このプロパティは 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)
)