OpenSave プロパティ(ActiveX)

PreferencesOpenSave オブジェクトを取得します。

サポートされているプラットフォーム: Windows のみ

構文と要素

VBA:

object.OpenSave
object

タイプ: Preferences

このプロパティが適用されるオブジェクト。

プロパティの値

読み込み専用: はい

タイプ: PreferencesOpenSave

PreferencesOpenSave オブジェクトを取得します。

注意

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