「Vla-put-autosavepath」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{AutoLISP}} ; 構文 : (vla-put-plotlogfilepath ''vla-object'' ''path'') ; 機能 : AutoSaveInterval プロパティを使用して自動保存を有効にしたと...」)
 
編集の要約なし
 
1行目: 1行目:
{{AutoLISP}}
{{AutoLISP}}
; 構文
; 構文
: (vla-put-plotlogfilepath ''vla-object'' ''path'')
: (vla-put-autosavepath ''vla-object'' ''path'')





2015年1月12日 (月) 13:02時点における最新版

構文
(vla-put-autosavepath vla-object path)


機能
AutoSaveInterval プロパティを使用して自動保存を有効にしたときに作成されるファイルのパスを指定する。


引数
  • vla-object … PreferencesFilesのVLAオブジェクト
  • path … 自動保存ファイルのドライブとパス。


戻り値
nil
  • MEMO: このプロパティの値は、システム変数 SAVEFILEPATHに格納される。


サンプル
(vl-load-com)
(defun c:Example_AutoSavePath()
    ;; 自動保存ファイルのパスを取得・変更するサンプル
    (setq acadObj (vlax-get-acad-object))
    (setq preferences (vla-get-Preferences acadObj))
      
    ;; 現在の AutoSavePath 
    (setq currAutoSavePath (vla-get-AutoSavePath (vla-get-Files preferences)))
  
    (if (= currAutoSavePath "")
        (alert "AutoSavePath is not currently set.")
        (alert "現在の自動保存パスは " currAutoSavePath)
    )
    
    ;; 変更
    (setq newAutoSavePath "C:\\MyCAD\\")
    (vla-put-AutoSavePath (vla-get-Files preferences) newAutoSavePath)
    (alert (strcat "新しい自動保存パスは " newAutoSavePath))
    
    ;; 戻す
    (vla-put-AutoSavePath (vla-get-Files preferences) currAutoSavePath)
    (if (= currAutoSavePath "")
        (alert "自動保存パスをNullにリセット")
        (alert (strcat "自動保存パスを元に戻す " currAutoSavePath))
    )
)

関連事項