Map
count: 4
bird -> tweet
cat -> meow
dog -> woof
snake -> hissJScript Example:
var map = DOpus.Create.Map();
map("cat") = "meow";
map("dog") = "woof";
map("bird") = "tweet";
map("snake") = "hiss";
DOpus.Output("count: " + map.count);
for (var e = new Enumerator(map); !e.atEnd(); e.moveNext())
{
var key = e.item();
var value = map(key);
DOpus.Output(key + " -> " + value);
}VBScript Example:
Property Name
Return Type
Description
最后更新于