印刷ログ ファイルのパスを指定します。
サポートされているプラットフォーム: Windows のみ
読み込み専用: いいえ
タイプ: 文字列
印刷ログ ファイルのパス。
このプロパティは AutoCAD では、[印刷出力ファイルとパブリッシュ ログ ファイルの場所]を設定する[オプション]ダイアログ ボックスに相当します。
VBA:
Sub Example_PlotLogFilePath() ' Note: Change the path to a valid folder on your system. Dim MyPreference As AcadPreferencesFiles Set MyPreference = AcadApplication.Preferences.Files MyPreference.PlotLogFilePath = "C:\Plots" End Sub
Visual LISP:
(vl-load-com) (defun c:Example_PlotLogFilePath() ;; 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-Files preferences)) (vla-put-PlotLogFilePath MyPreference "C:\\Plots") )