DefaultPlotToFilePath プロパティ(ActiveX)

ファイルに印刷出力するときの既定のパスを指定します。

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

構文と要素

VBA:

object.DefaultPlotToFilePath
object

タイプ: PreferencesOutput

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

プロパティの値

読み込み専用: いいえ

タイプ: 文字列

ファイルに印刷出力するときの既定のパス。

注意

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