OpenWGA 7.11 - TMLScript reference
WGAObject:
WGA.Map([otherMap])
| Description |
Creates a WGAMap Object. Available since version 7.11.12 A WGAMap is a collection of objects which are stored under individual keys. The keys then can be used to retrieve the object that was stored under that key, Maps have a dynamic size. Elements can be added, inserted and deleted from the map. Their functionality is mostly equal to JavaScript object-s. They are effectively the TMLScript representation of the Java interface java.util.Map. |
||||||||||||||||||||||||
| Retrieval |
WGA.Map() The map object can optionally be initialised with another WGAMap object or a JavaScript object: WGA.Map(otherMapObjectOrJSObject) |
||||||||||||||||||||||||
| Allowed in script types |
|
||||||||||||||||||||||||
| Inherits from object | Lookup table | ||||||||||||||||||||||||
| Properties and methods |
|
||||||||||||||||||||||||
| Examples |
let map = WGA.Map(); |
