Dictionaries プロパティ(ActiveX)

ドキュメントの Dictionaries コレクションを取得します。

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

構文と要素

VBA:

object.Dictionaries
object

タイプ: DatabaseDocument

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

プロパティの値

読み込み専用: はい

タイプ: Dictionaries

ドキュメントの Dictionaries コレクション。

注意

追加の注意はありません。

VBA:

Sub Example_Dictionaries()
    ' This example finds the current dictionary collection and
    ' adds a new dictionary to that collection.
    
    Dim dict As AcadDictionary
    Set dict = ThisDrawing.Dictionaries.Add("TEST")
    MsgBox "A new dictionary called " & dict.name & " has been added to the dictionaries collection.", vbInformation, "Dictionaries Example"
End Sub

Visual LISP:

(vl-load-com)
(defun c:Example_Dictionaries()
    ;; This example finds the current dictionary collection and
    ;; adds a new dictionary to that collection.
    (setq acadObj (vlax-get-acad-object))
    (setq doc (vla-get-ActiveDocument acadObj))
    
    (setq dict (vla-Add (vla-get-Dictionaries doc) "TEST"))
    (alert (strcat "A new dictionary called " (vla-get-Name dict) " has been added to the dictionaries collection."))
)