mapSetValueAt - method of the PmMap object
Description:
Sets the value of selected object property (creates the corresponding property if needed).
Syntax:
Empty mapSetValueAt(String sProp, Variant vValue)
Parameters:
sProp | (String) Property name. |
vValue | (Variant) Value that will be assigned to property. |
---|
Note:
This method is also functional in
Web panels.
The property can be created and/or value can be set directly (
mMap.property = value). This method can be used for more general approach - for example the property name can be stored in another variable.
In the
Web panel that is written in the
VBScript language it is necessary to use this method to create properties. In this case it is not possible to create property just by assigning the value.
Example:
JavaScriptSelect and copy to clipboard
var mMap = Pm.CreatePmMap();
mMap.mapSetValueAt("Temperature", 85);
var val = mMap.mapGetValueAt("Temperature");
// val contains 85