• Welcome to Jose's Read Only Forum 2023.
 

IDictionary.RemoveAll Method

Started by José Roca, July 13, 2008, 10:07:05 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

José Roca



The following example illustrates the use of the RemoveAll method

JScript


var a, d, i, s;              // Create some variables.
d = new ActiveXObject("Scripting.Dictionary"); 
d.Add ("a", "Athens");       // Add some keys and items.
d.Add ("b", "Belgrade");
d.Add ("c", "Cairo");
...
d.RemoveAll( );       // Clear the dictionary.


VBScript


Dim d   ' Create some variables.
Set d = CreateObject("Scripting.Dictionary")
d.Add "a", "Athens"   ' Add some keys and items.
d.Add "b", "Belgrade"
d.Add "c", "Cairo"
...
d.RemoveAll   ' Clear the dictionary.


PowerBASIC


DIM d AS IDictionary
DIM vKey AS VARIANT
DIM vItem AS VARIANT

d = NEWCOM "Scripting.Dictionary"
vKey = "a" : vItem = "Athens"
d.Add vKey, vItem
vKey = "b" : vItem = "Belgrade"
d.Add vKey, vItem
vKey = "c" : vItem = "Cairo"
d.Add vKey, vItem
...
d.RemoveAll   ' Clear the dictionary.