This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Count Property Example
This example uses the
Collection object's
Count property to specify how many iterations are required to remove all the elements of the collection called
MyClasses
. When collections are numerically indexed, the base is 1 by default. Since collections are reindexed automatically when a removal is made, the following code removes the first member on each iteration.
Dim Num, MyClasses
For Num = 1 To MyClasses.Count
' Remove name from the collection.
MyClasses.Remove 1 ' Default collection numeric indexes
Next ' begin at 1.