PreferencesOutput オブジェクトを取得します。
サポートされているプラットフォーム: Windows のみ
PreferencesOutput オブジェクトは、レジストリに保存されている[オプション]ダイアログ ボックスの[印刷]タブのすべてのオプションを保持しています。図面とともに保存されたすべてのオプションは、DatabasePreferences オブジェクトで検索できます。
VBA:
Sub Example_Output() ' This example obtains a reference to the Output Preferences object ' from the Application Preferences object, and reads one of the Output ' preferences Dim ACADPref As AcadPreferencesOutput ' Obtain a reference to the Output Preferences object Set ACADPref = ThisDrawing.Application.preferences.Output MsgBox "You now have access to the properties and methods of the Output Preferences object!" MsgBox "The Output preference DefaultOutputDevice is set to: " & ACADPref.DefaultOutputDevice End Sub
Visual LISP:
(vl-load-com) (defun c:Example_Output() ;; This example obtains a reference to the Output Preferences object ;; from the Application Preferences object, and reads one of the Output ;; preferences (setq acadObj (vlax-get-acad-object)) (setq preferences (vla-get-Preferences acadObj)) ;; Obtain a reference to the Output Preferences object (alert (strcat "You now have access to the properties and methods of the Output Preferences object!" "\nThe Output preference DefaultOutputDevice is set to: " (vla-get-DefaultOutputDevice (vla-get-Output preferences)))) )