Barlist.Groups
Returns the group collection
Syntax
groups =
barlist.Groups
Parameters
None
Returns
Object. Returns a GroupCollection object.
Example
This example accesses the group collection of a barlist and
iterates through each group displaying its name.
Dim groups as
GroupCollection
Set groups = barlist.Groups
Dim group as Group
For each group in groups
MsgBox group.Name
Next
|