Remove

The Remove method deletes an item from a collection.

Syntax

Collection.Remove(key|index)

Parameters
key
The identifier for the item to remove.
index
An index offset indicating which item in the list to remove.
Remarks

The Remove method takes either a string or an integer as an input parameter. If the input parameter is a string, the method will search the contents collection for an item with that name and remove it. If the input parameter is an integer, the method counts that number of items from the start of the collection, and removes the corresponding item.

Example

The following example adds two items to the Application.Contents collection and removes the second one.

<%
   Record.Fields("strFirst")=("First thing")
   Record.Remove("strFirst")
%>
Applies To

Collection Object

See Also

RemoveAll



©2001-2015 eMill. All trademarks property of their owners.