Home Up Count Item Add Remove Replace Sort Move MoveUp MoveDown OnBarRecordAdded OnBarRecordChanged OnBarRecordRemoved OnBarRecordsSorted OnBarRecordMoved
| |
BarRecordCollection.Add
Creates a new bar record in the collection
Syntax
group.Bars.Add(newrecord)
Parameters
newrecord
Bar record to be added to the group
Returns
None
Example
This example creates a new bar record and adds it to the
group
Dim newrecord As
BarRecord
Set newrecord = CreateBarRecord()
group.Bars.Add newrecord
|