Vla-get-continuousplotlog
- 構文
- (vla-get-continuousplotlog vla-object )
- 機能
- 継続して印刷ログを保存するかどうかを取得する。
- 引数
-
- vla-object … PreferencesOutput のVLAオブジェクト
- 戻り値
- ブール型
- :vlax-True: すべての印刷処理を単一の印刷ログ ファイルに書き込む。
- :vlax-False: それぞれの印刷処理を個別の印刷ログに書き込む。
- 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) )
関連事項