Object PmArray (Array of values)
Description:
Object represents an array of values. This object is used in scripts written in the
JavaScript language.
Note:
In
JavaScript panels of the PROMOTIC application it is not possible to use the standard arrays of the
VBScript and
JavaScript languages (see
Language data types). In these panels, all properties and methods use the
PmArray - see
How to use array of values in the PROMOTIC system.
Comparison of objects used for data storage:
The following object types can be used for holding values (of any data type). Each of these objects has certain advantages and disadvantages and the choice depends on the desired usage.
PmArray: This object contains values that are accessible by index into the array - it is possible to read any value at any time in this object. Reading and writing values is very fast, but adding is slow.
This object is functional only for
JavaScript language. For the
VBScript language the array is represented by
Array data type.
PmMap: This object contains values that are addressed by name (text identifier). Value names represent object properties. The advanatege is the "clarity" of usage in the script code. The disadvantage is the inability to access the values in cycle by index.
PmBuffer: This object contains binary values in the data block. For reading/writing of individual value it is necessary to know its position (offset) in the data block and also the data type (size).
Example2:
Creates and fills 2-dimensional array:
JavaScriptSelect and copy to clipboard
var arr = Pm.CreatePmArray(2, 2, 3);
arr.SetItem(11, 0, 0);
arr.SetItem(12, 1, 0);
arr.SetItem(21, 0, 1);
arr.SetItem(22, 1, 1);
arr.SetItem(31, 0, 2);
arr.SetItem(32, 1, 2);