|
Dictionary.Keys Method
Returns an array containing all existing keys in a Dictionary object.
object.Keys ( )
Arguments
- object
- Required. Always the name of a Dictionary object.
- key
- Required. Key value being searched for in the Dictionary object.
Remarks
The following example illustrates the use of the Keys method.
function KeysDemo()
{
var a, d, i, s; // Create some variables.
d = new Application.Dictionary();
d.Add ("a", "Athens"); // Add some keys and items.
d.Add ("b", "Belgrade");
d.Add ("c", "Cairo");
a = (new VBArray(d.Keys())).toArray(); // Get the keys.
s = "";
for (i in a) // Iterate the dictionary.
{
s += a[i] + " - " + d(a[i]) + " ";
}
return(s); // Return the results.
}
Applies To:
Dictionary Object
Requirements
|