Documentation for Axxon PSIM 1.0.0-1.0.1.

Previous page Next page


You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

The MsgToString method transforms MsgObject objects (including the static Event object) into a String variable.

Method call syntax

 function MsgToString() : String

Method arguments: no arguments.

Usage examples

Problem. Send the messages about all events registered for Microphone 1, to a specified e-mail address.

Note

The Short Messages Service is supposed to be installed and working properly.

 if (Event.SourceType == "OLXA_LINE" && Event.SourceId == "1")
{
 var msgstr = Event.MsgToString();
DoReactStr("MAIL_MESSAGE", "1", "SEND", "subject<Microphone 1>,body<" + msgstr + ">");
DoReactStr("MAIL_MESSAGE", "1", "SEND", "");
}
  • No labels