Search
FlowChart.Groups Property
See Also
 



Gets a collection of all groups in the diagram.

 Syntax

VB6  Copy Code

Public Property Get Groups() As IGroups

C++  Copy Code

public:
IGroups* get_Groups ()

 Property Value

A collection of Group objects.

 Remarks

A collection containing all the groups in current FlowChartX document. You can iterate over them using Count and Item properties or you can get standard enumerator object (IEnumVariant) using _NewEnum. Visual Basic gives access to this enumerator with the 'for each' statement.

 See Also