VBScript » Dictionary » RemoveAll

Version: 2.0

Syntax:
object.RemoveAll

The RemoveAll method is used to remove all the key/item pairs from the specified Dictionary object.

Examples

Code:
<%
dim guitars
set guitars=CreateObject("Scripting.Dictionary")
guitars.Add "e", "Epiphone"
guitars.Add "f", "Fender"
guitars.Add "g", "Gibson"
guitars.Add "h", "Harmony"
guitars.RemoveAll
guitars.Add "i", "Ibanez"
%>
Output:
"Ibanez"