TempFilePath 属性 (ActiveX)
指定 AutoCAD 用于存储临时文件的目录。 支持的平台:仅限 Windows 属性值只读:不 类型:字符串 用于临时文件的目录的驱动器和路径。 言论没有其他评论。 例子VBA: Sub Example_TempFilePath() ' This example returns the current setting of ' TempFilePath. It then changes the value, and finally ' it resets the value back to the original setting. Dim preferences As AcadPreferences Dim currTempFilePath As String Dim newTempFilePath As String Set preferences = ThisDrawing.Application.preferences ' Retrieve the current TempFilePath value currTempFilePath = preferences.Files.TempFilePath MsgBox "The current value for TempFilePath is " & currTempFilePath, vbInformation, "TempFilePath Example" ' Change the value for TempFilePath newTempFilePath = "C:\AutoCAD\" preferences.Files.TempFilePath = newTempFilePath MsgBox "The new value for TempFilePath is " & newTempFilePath, vbInformation, "TempFilePath Example" ' Reset TempFilePath to its original value preferences.Files.TempFilePath = currTempFilePath MsgBox "The TempFilePath value is reset to " & currTempFilePath, vbInformation, "TempFilePath Example" End Sub 可视化 LISP: (vl-load-com) (defun c:Example_TempFilePath() ;; This example returns the current setting of ;; TempFilePath. It then changes the value, and finally ;; it resets the value back to the original setting. (setq acadObj (vlax-get-acad-object)) (setq preferences (vla-get-Preferences acadObj)) ;; Retrieve the current TempFilePath value (setq currTempFilePath (vla-get-TempFilePath (vla-get-Files preferences))) (alert (strcat "The current value for TempFilePath is " currTempFilePath)) ;; Change the value for TempFilePath (setq newTempFilePath "C:\\AutoCAD\\") (vla-put-TempFilePath (vla-get-Files preferences) newTempFilePath) (alert (strcat "The new value for TempFilePath is " newTempFilePath)) ;; Reset TempFilePath to its original value (vla-put-TempFilePath (vla-get-Files preferences) currTempFilePath) (alert (strcat "The TempFilePath value is reset to " currTempFilePath)) ) |
|Archiver|CAD开发者社区 ( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2024-12-15 12:54
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.