PreferencesOpenSave オブジェクトを取得します。
サポートされているプラットフォーム: Windows のみ
PreferencesOpenSave オブジェクトは、レジストリに保存されている[オプション]ダイアログ ボックスの[開く/保存]タブのすべてのオプションを保持しています。図面とともに保存されたすべてのオプションは、DatabasePreferences オブジェクトで検索できます。
VBA:
Sub Example_OpenSave() ' This example obtains a reference to the OpenSave Preferences object ' from the Application Preferences object, and reads one of the OpenSave ' preferences Dim ACADPref As AcadPreferencesOpenSave ' Obtain a reference to the OpenSave Preferences object Set ACADPref = ThisDrawing.Application.preferences.OpenSave MsgBox "You now have access to the properties and methods of the OpenSave Preferences object!" MsgBox "The OpenSave preference TempFileExtension is set to: " & ACADPref.TempFileExtension End Sub
Visual LISP:
Not available