Removes an item from an object given the index position.
Syntax
object.Remove(index)
Parameters
object
Required; String. An object variable that evaluates to a CatalogCollection object.
index
Required; Long. A zero-based index indicating the position of the object to remove.
Remarks
The object is removed from the collection and all objects with higher indices are shifted up. Note that the Count property of a collection changes after the Remove method has been called.
Call the SaveChanges method to save the changes made to the collection using the Remove method.