Class wwCollection

The base wwCollection class allows adding items as single items. The collection is purely accessed by a numeric indexer.

The collection internally manages an aItems array which can also be accessed directly for performance if necessary.

Custom

Class Members

MemberDescription
Add Adds an item to the Collection.
o.Add(Value)
Clear Clears all of the collection's items.
o.Clear()
InsertAt Inserts an item at the specified index position. Items are inserted before the item specified.
o.InsertAt(Position,Value)
Item Returns an item from the collection by in integer index value.
o.Item(Index)
Remove Removes an item from the collection by its index value.
o.Remove(Index)
UpdateItem Updates an item in the collection by its numeric index value.
o.UpdateItem(lnIndex)
aItems[] The internally maintained array of items added. This array is one dimensional and contains only the values added.
Count The count of items in this collection.

Requirements



  Last Updated: 9/21/2008 | © West Wind Technologies, 2008