Mike95 C++ COM Server library
Mike95.vector Interface Methods:
- addElement( item ) //adds an item to the end of the vector
- bool contains( item ) //retuns true if item exists in vector
- elementAt( index ) //returns the item currently at index
- firstElement() //returns the first element in the vector
- indexOf( item ) //returns the first index location containing item
- lastElement() //returns the last element in the vector
- lastIndexOf( item ) //returns the last index location containing item
- removeAllElements() //removes all elements from the vector
- removeElement( item ) //removes the first occurance of item
- removeElementAt( index ) //removes the element located at index
Interface Properties:
- bool isEmpty //(read only)is true if empty, false otherwise
- long size //(read only)contains the number of items currently in the vector
Screen Shot in Visual Interdev 6.0 |
|
|