Home Up Count Item Add Remove Replace Sort Move MoveUp MoveDown OnBarRecordAdded OnBarRecordChanged OnBarRecordRemoved OnBarRecordsSorted OnBarRecordMoved
| |
BarRecordCollection.Count
Get the number of bar records in the collection
Syntax
count =
group.Bars.Count
Parameters
None
Returns
Long Integer. The number of bar records in the collection
Example
This example displays the number of bar records in the
collection
Dim count as
Long
count = group.Bars.Count
MsgBox "There are " + count + " bar records"
|