Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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
languagejavascript
 function  GetParam(param: String) : String

Method arguments:

  1. param

...

  1. is arequired argument.

...

  1. It corresponds to the parameter name of the system object

...

  1. for which the MsgObject object (or

...

  1. the Event static object)

...

  1. was created. Possible values:

...

  1. String type

...

  1. , range

...

  1. is limited by the parameters available

...

  1. for the

...

  1. given object.
Info
titleNote

 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”.

...