Drafting プロパティ(ActiveX)

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

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

構文と要素

VBA:

object.Drafting
object

タイプ: Preferences

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

プロパティの値

読み込み専用: はい

タイプ: PreferencesDrafting

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

注意

PreferencesDrafting オブジェクトは、レジストリに保存されている[オプション]ダイアログ ボックスの[作図補助]タブのすべてのオプションを保持しています。図面とともに保存されたすべてのオプションは、DatabasePreferences オブジェクトで検索できます。

VBA:

Sub Example_Drafting()
    ' This example obtains a reference to the Drafting Preferences object
    ' from the Application Preferences object, and reads one of the Drafting
    ' preferences
    
    Dim ACADPref As AcadPreferencesDrafting
    
    ' Obtain a reference to the Drafting Preferences object
    Set ACADPref = ThisDrawing.Application.Preferences.Drafting
    
    MsgBox "We now have access to the properties and methods of the Drafting Preferences object!"
    MsgBox "The Drafting preference AutoSnapTooltip is set to: " & ACADPref.AutoSnapTooltip

End Sub

Visual LISP:

(vl-load-com)
(defun c:Example_Drafting()
    ;; This example obtains a reference to the Drafting Preferences object
    ;; from the Application Preferences object, and reads one of the Drafting
    ;; preferences
    (setq acadObj (vlax-get-acad-object))
    (setq preferences (vla-get-Preferences acadObj))
    
    ;; Obtain a reference to the Drafting Preferences object
    (setq ACADPref (vla-get-Drafting preferences))
    
    (alert "We now have access to the properties and methods of the Drafting Preferences object!")
    (alert (strcat "The Drafting preference AutoSnapTooltip is set to: " (if (= (vla-get-AutoSnapTooltip ACADPref) :vlax-true) "True" "false")))
)