Group.BarRecords
Returns the bar records collection
Syntax
barrecords =
barlist.Groups(index).BarRecords
Parameters
None
Returns
Object. Returns a BarRecordCollection object.
Example
This example accesses the bar record collection of the 1th
group and iterates through each group displaying its name.
Dim bars as
BarRecordCollection
Set bars = barlist.Groups(0).BarRecords
Dim bar as BarRecord
For each bar in bars
MsgBox bar.Mark
Next
|