PropertyMgr.setProperty (key, value)
sets a property of the cache object and updates the xml-content at the parent object.

  • Parameter key:
    only values starting with letters are accepted
  • Parameter value:
  • Returns
    false if key is invalid
Sourcecode in PropertyMgr/objectFunctions.js:
1:   function setProperty(key, value) {
2:      if (!key)
3:         return false;
4:      this.evalCache();
5:      this.cache.content[key] = value.trim();
6:      this._parent[this.getDataField ()] = Xml.writeToString (this.cache.content);
7:   }