Vla-get-files

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(vla-get-files vla-object)


機能
PreferencesFiles オブジェクトを取得する。


引数
  • vla-object … VLAオブジェクト


戻り値
T
  • memo : PreferencesFiles オブジェクトは、レジストリに保存されている[オプション]ダイアログ ボックスの[ファイル]タブのすべてのオプションを保持している。
  • 図面とともに保存されたすべてのオプションは、DatabasePreferences オブジェクトで検索できる。


サンプル
(vlax-dump-object (vla-get-files (vla-get-preferences (vlax-get-acad-object))))
; IAcadPreferencesFiles: This object contains the options from the Files tab on the Options dialog
; プロパティの値:
;   AltFontFile = "simplex.shx"
;   AltTabletMenuFile = ""
;   Application (RO) = #<VLA-OBJECT IAcadApplication 00000001401391d8>
;   AutoSavePath = "C:\\Users\\<user>\\appdata\\local\\temp\\"
;   ColorBookPath = "c:\\program files\\autodesk\\autocad 2xxx\\support\\color;C:\\Users\\<user>\\appdata\\roaming\\autodesk\\autocad 2xxx\\R99,9\\jpn\\support\\color;
;   ConfigFile (RO) = "C:\\Users\\<user>\\AppData\\Local\\Autodesk\\AutoCAD 2xxx\\R99,9\\jpn\\acad2xxx.cfg"
;   CustomDictionary = "C:\\Users\\<user>\\appdata\\roaming\\autodesk\\autocad 2xxx\\R99,9\\jpn\\support\\sample.cus"
;   CustomIconPath = "C:\\Users\\<user>\\appdata\\roaming\\autodesk\\autocad 2xxx\\R99,9\\jpn\\support\\icons"
;   DefaultInternetURL = "http://wiki.gz-labs.net"
;   DriversPath = "C:\\Program Files\\Autodesk\\AutoCAD 2xxx\\drv"
;   EnterpriseMenuFile = "."
;   FontFileMap = "C:\\Users\\<user>\\appdata\\roaming\\autodesk\\autocad 2xxx\\R99,9\\jpn\\support\\acad.fmp"
;   HelpFilePath = "C:\\Program Files\\Autodesk\\AutoCAD 2xxx\\Help\\index.html"
;   LogFilePath = "C:\\temp"
;   MainDictionary = "enu"
;   MenuFile = "C:\\temp\\acad"
;   PageSetupOverridesTemplateFile = ""
;   PlotLogFilePath = "C:\\Users\\<user>\\appdata\\local\\autodesk\\autocad2xxx\\R99,9\\jpn\\"
;   PostScriptPrologFile = ""
;   PrinterConfigPath = "C:\\Users\\<user>\\appdata\\roaming\\autodesk\\autocad2xxx\\R99,9\\jpn\\plotters"
;   PrinterDescPath = "C:\\Users\\<user>\\appdata\\roaming\\autodesk\\autocad2xxx\\R99,9\\jpn\\plotters\\pmp files"
;   PrinterStyleSheetPath = "C:\\Users\\<user>\\appdata\\roaming\\autodesk\\autocad 2xxx\\R99,9\\jpn\\plotters\\plot styles"
;   PrintFile = "."
;   PrintSpoolerPath = "C:\\Users\\<user>\\appdata\\local\\temp\\"
;   PrintSpoolExecutable = ""
;   QNewTemplateFile = "C:\\template\\cad.dwt"
;   SupportPath = "C:\\gizmotools;C:\\Users\\<user>\\appdata\\roaming\\autodesk\\autocad 2xxx\\R99,9\\jpn\\support;C:\\program files\\autodesk\\autocad 2xxx\\support;C:\\program files\\autodesk\\autocad 2xxx\\fonts;C:\\program files\\autodesk\\autocad2xxx\\help;C:\\program files\\autodesk\\autocad 2xxx\\support\\color;C:\\program files\\autodesk\\autocad 2xxx\\express;C:\\program files\\autodesk\\applicationplugins\\fusionplugin.bundle\\contents\\resources\\"
;   TempFilePath = "C:\\Users\\<user>\\appdata\\local\\temp\\"
;   TemplateDwgPath = "C:\\temp\\template"
;   TempXrefPath = "C:\\Users\\<user>\\appdata\\local\\temp\\"
;   TextEditor = "Internal"
;   TextureMapPath = "C:\\Program Files (x86)\\Common Files\\Autodesk Shared\\Materials\\Textures\\1\\Mats"
;   ToolPalettePath = "C:\\Users\\<user>\\AppData\\Roaming\\Autodesk\\AutoCAD  2xxx\\R99,9\\jpn\\Support\\ToolPalette"
;   WorkspacePath = "C:\\Users\\<user>\\appdata\\roaming\\autodesk\\autocad  2xxx\\R99,9\\jpn\\data links"


関連事項