Go to documentation repository
The GetParam method returns the value of the specified parameter of the system object for the MsgObject or Event object.
Method call syntaxSyntax for method invocation:
Code Block | ||
---|---|---|
| ||
function GetParam(param: String) : String |
Method arguments:
...
...
...
...
...
...
...
...
...
...
Info | ||
---|---|---|
| ||
If If the object has no parameter with this name, then the method restores returns an empty string. |
Example. When any event from any camera is registered, check from which computer the event comes. If the computer has “WS3” the WS3 name, create the event copy where in which the computer’s name is “Computer”.
Code Block | ||
---|---|---|
| ||
if (Event.SourceType == "CAM") { var msg = Event.Clone(); if (msg.GetParam("AxxonNetSLAVE_id") == "WS3") { msg.SetParam("AxxonNetSLAVE_id", "Computer"); NotifyEvent(msg); } } |