InfoLogAdd - method of the Pm object
Syntax:
Empty InfoLogAdd(String sId, String sText)
Parameters:
sId | (String) The identifier of the tab in the INFO system that has been previously registered by the Pm.InfoLogReg method. |
sText | (String) Text to be written into the tab in the INFO system. |
---|
Example:
Writing text containing name and content of the
mValue variable (object of the
PmMap type) into the
"Log1" tab in the INFO system.
JavaScriptVBScriptSelect and copy to clipboard
Pm.InfoLogAdd("log1", "mValue=" + Pm.JsonStringify(mValue));
Pm.InfoLogAdd "log1", "mValue=" + Pm.JsonStringify(mValue)