Vla-put-defaultplottofilepath
- 構文
- (vla-put-defaultplottofilepath vla-object path)
- 機能
- ファイルに印刷出力するときの既定パスを指定する。
- 引数
-
- vla-object … PreferencesFilesのVLAオブジェクト
- path … 既定パスの文字列
- 戻り値
- nil
- MEMO: このプロパティは AutoCAD では、「ファイルに印刷出力する操作の規定値」の場所を設定する[オプション]ダイアログ ボックスに相当する。
- サンプル
(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") )
関連事項