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 Next »

The GetParam method returns the value of the specified parameter of the MsgObject or Event object.

Method call syntax

 function GetParam(param: String) : String

Method arguments:

param - required argument. The name of the parameter of the object created using MsgObject (or of the Event object). It takes the following values:  type – String, range – available parameters for the objects of the specified type.

Note

 If the object has no parameter with this name, then the method restores an empty string

Example. When any event from any camera is registered, check from which computer the event comes. If the computer has “WS3” name, create the event copy where the computer’s name is “Computer”.

 if (Event.SourceType == "CAM")
{
var msg = Event.Clone();
if (msg.GetParam("AxxonNet_id") == "WS3")
{
msg.SetParam("AxxonNet_id", "Computer");
NotifyEvent(msg);
}
}
  • No labels