Gets a reference to the group of items that are attached to this one.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public Group SubordinateGroup { get; } |
Visual Basic
Copy Code
|
|---|
Public ReadOnly Property SubordinateGroup As Group |
A reference to a Group object or null (Nothing in Visual Basic) if the item is not master of a group.
RemarksDiagram items can be grouped hierarchically in such a manner, that if an item is moved all of its subordinated items in the hierarchy move too. The immediate subordinates of an item are contained and represented by a Group instance. SubordinateGroup provides access to the group of items that are attached to this one. If there are no attached items, the property returns null (Nothing in Visual Basic).
See Also