Groups プロパティ(ActiveX)

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

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

構文と要素

VBA:

object.Groups
object

タイプ: DatabaseDocument

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

プロパティの値

読み込み専用: はい

タイプ: Groups

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

注意

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

VBA:

Sub Example_Groups()
    ' This example finds the current Groups collection and
    ' adds a new group to that collection.
    
    Dim groupColl As AcadGroups
    Set groupColl = ThisDrawing.Groups
    
    ' Create a dimension style named "TEST" in current drawing
    Dim testGroup As AcadGroup
    Set testGroup = groupColl.Add("TEST")
    MsgBox "A new group called " & testGroup.name & " has been added to the Groups collection.", vbInformation, "Groups Example"
End Sub

Visual LISP:

(vl-load-com)
(defun c:Example_Groups()
    ;; This example finds the current Groups collection and
    ;; adds a new group to that collection.
    (setq acadObj (vlax-get-acad-object))
    (setq doc (vla-get-ActiveDocument acadObj))
  
    (setq groupColl (vla-get-Groups doc))
    
    ;; Create a dimension style named "TEST" in current drawing
    (setq testGroup (vla-Add groupColl "TEST"))
    (alert (strcat "A new group called " (vla-get-Name testGroup) " has been added to the Groups collection."))
)