ContinuousPlotLog プロパティ(ActiveX)

継続して印刷ログを保存するかどうかを指定します。

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

構文と要素

VBA:

object.ContinuousPlotLog
object

タイプ: PreferencesOutput

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

プロパティの値

読み込み専用: いいえ

タイプ: ブール型

注意

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