Removes an item specified by the item itself.Syntax:
boolean = HandyCollection.RemoveByItem(item)
IDL definition:
[id(6), helpstring("Removes an item by itself")]
HRESULT RemoveByItem([in] VARIANT varItem, [out, retval] VARIANT* pvarResult);
Parameters:
item - The object or value of the item to be removed from collection.
boolean - true if the item was found and successfuly
removed, false if the item wasn't found.
Remarks:
When you remove an item from the middle of the collection all items that were after it
change their numeric index. Note that if you use ItemByIndex property or any of the other
methods that take numeric indexes.
If the item wan't removed HRESULT is set to S_FALSE.
Applies to:
HandyCollection object
|