ファイルに印刷出力するときの既定のパスを指定します。
サポートされているプラットフォーム: Windows のみ
読み込み専用: いいえ
タイプ: 文字列
ファイルに印刷出力するときの既定のパス。
このプロパティは AutoCAD では、「ファイルに印刷出力する操作の規定値」の場所を設定する[オプション]ダイアログ ボックスに相当します。
VBA:
Sub Example_DefaultPlotToFilePath() ' Note: Change the path to a valid folder on your system. Dim MyPreference As AcadPreferencesOutput Set MyPreference = AcadApplication.preferences.Output MyPreference.DefaultPlotToFilePath = "C:\Plots" End Sub
Visual LISP:
(vl-load-com) (defun c:Example_DefaultPlotToFilePath() ;; Note: Change the path to a valid folder on your system. (setq acadObj (vlax-get-acad-object)) (setq preferences (vla-get-Preferences acadObj)) (setq MyPreference (vla-get-Output preferences)) (vla-put-DefaultPlotToFilePath MyPreference "C:\\Plots") )