Search
DiagramItem.SubordinateGroup Property
See Also
 





Gets a reference to the group of items that are attached to this one.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public Group SubordinateGroup { get; }

Visual Basic  Copy Code

Public ReadOnly Property SubordinateGroup As Group

 Property Value

A reference to a Group object or null (Nothing in Visual Basic) if the item is not master of a group.

 Remarks

Diagram 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