property value

(r/o) value value;

Typ

Zugriff

This property gets the value in the key-value pair.
var dictionaryObj = shell.serviceManager.basics.dictionary;            
var enumerator = dictionaryObj.getEnumerator();
while (enumerator.moveNext())
{
    var key = enumerator.current.key;
    var value = enumerator.current.value;
}