Remove (WebCache)

Removes an element from the WebCache collection using the index of the cached item.

Syntax

object.Remove(Index As Variant)

The Remove method syntax has the following parts:

Part Description
object An expression evaluating to an object of type WebCache.
Index Variant

Example

'In this example aWebCache represents a declared instance of the webcache class
'containing cached items
 
'removes the first cached item in the webcache collection
 
aWebCache.remove(0)