Start method
Sets the index position to the first Tag object in the current TagIterator collection.
Syntax
Start
Return Value
This method returns no values.
Remarks
Use the TagIterator.Step method to advance the index position to the next available Tag in the current TagIterator collection.
Example
Dim TagExtractor
Set TagExtractor = AmCreateObject("IcTagExtractor.IcTagExtractor") Dim TagIterator Set TagIterator = TagExtractor.TagIterator(iCollectionType) If TagIterator.IsValid Then ‘Iterate through the collection TagIterator.Start Do ‘Do work here Loop While TagIterator.Step End If