Vla-put-continuousplotlog

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(vla-put-continuousplotlog vla-object bool )


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


引数
  • vla-object … PreferencesOutput のVLAオブジェクト
  • bool … ブール型
  • :vlax-True: すべての印刷処理を単一の印刷ログ ファイルに書き込む。
  • :vlax-False: それぞれの印刷処理を個別の印刷ログに書き込む。


戻り値
nil


  • MEMO: このプロパティは CAD[オプション]ダイアログ ボックスで「継続的に印刷ログを保存」と「印刷ごとに1つのログを保存」に設定するのと同等。


サンプル
(vl-load-com)
(defun c:Example_ContinuousPlotLog()
    (setq acadObj (vlax-get-acad-object))
    (setq preferences (vla-get-Preferences acadObj))
  
    (setq MyPreference (vla-get-Output preferences))
    (vla-put-ContinuousPlotLog MyPreference :vlax-false)
)

関連事項