Promotic

ReadVars - method of the PmaCommMsg object

Description:
The method returns object of the PmVar type that represents one variable defined on the "Data-received" tab.
Syntax:
Object ReadVars(Variant id)
Parameters:
id(Variant) Specifies the variable. The value je:
- Name (String, case sensitive text, for example "d1") or
- Index (Long, zero-based index)
Note:
The PmVar object contains information about the variable (value, name, index, etc.).
If the variable does not exist, then error value (null for JavaScript or Nothing for VBScript) is returned..
See also:
- PmaData.Item (method)
Example1:
JavaScriptVBScriptSelect and copy to clipboard

var val = oMsg.ReadVars("xy").Value;
// or
val = oMsg.ReadVars(0).Value;
Example2:
Values of variables on the "Data-received" tab will be copied into variables of the PmaData object.
JavaScriptVBScriptSelect and copy to clipboard

var iRow;
var oData = pMe.Pm("/Data");
var oMsg = pMe.Pm("/Comm/mr1");

for (iRow = 0; iRow < oMsg.Count; iRow++)
{
oData.Item(iRow).Value = oMsg.ReadVars(iRow).Value;
}
PROMOTIC 9.0.27 SCADA system documentation MICROSYS, spol. s r.o.

Send page remarkContact responsible person
© MICROSYS, spol. s r.o.