Vla-put-tempfilepath

提供:GizmoLabs - だいたい CAD LISP なサイト
2015年1月12日 (月) 01:19時点におけるGizmon (トーク | 投稿記録)による版 (ページの作成:「{{AutoLISP}} ; 構文 : (vla-put-tempfilepath ''vla-object'' ''path'') ; 機能 : CAD がテンポラリ ファイルの格納に使用するフォルダを指定する...」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
構文
(vla-put-tempfilepath vla-object path)


機能
CAD がテンポラリ ファイルの格納に使用するフォルダを指定する。
引数
  • vla-object … PreferencesFilesのVLAオブジェクト
  • path … パスの文字列


戻り値
nil
  • 注意: この位置は、XRefDemandLoad プロパティで acEnableWithCopy ディマンド ロードを選択した場合、外部参照のコピーに使われる。
サンプル
(vl-load-com)
(defun c:Example_TempFilePath()
    ;; テンポラリ ファイルのフォルダを取得・変更するサンプル。
    (setq acadObj (vlax-get-acad-object))
    (setq preferences (vla-get-Preferences acadObj))
    
    ;; 元のパス
    (setq currTempFilePath (vla-get-TempFilePath (vla-get-Files preferences)))
    (alert (strcat "元の TempFilePath は " currTempFilePath))
    
    ;; 新しい TempFilePath
    (setq newTempFilePath "C:\\CAD\\")
    (vla-put-TempFilePath (vla-get-Files preferences) newTempFilePath)
    (alert (strcat "新しい TempFilePath は " newTempFilePath))
    
    ;; TempFilePath のリセット
    (vla-put-TempFilePath (vla-get-Files preferences) currTempFilePath)
    (alert (strcat "TempFilePath のリセット " currTempFilePath))
)

関連事項