Versions Compared

Key

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

GetObjectParams method is designed for getting the object’s parameters.used to get the parameters of an object.

Syntax for method invocationMethod call syntax:

Code Block
languagejavascript
 function GetObjectParams(objectType : String, objectId : String)

Method arguments:

  1. objectType is a required argument. Set It specifies the type of the system object ("CAM", " GRAY", "GRABBER" e.t.c.), for which  GRABBER, and so on) for which you want to return the type of a the parent object should be given back. Accepted Possible values: String type String, range is restricted limited by object types  types registered in the system.
  2. objectId is an object’s identifier. Accepted Possible values: String type.

Example. It is necessary to On macro 1, check the color control of camera №2  upon the start of Macros№12. If camera 2 is a color one, set it to recording.

Code Block
languagejavascript
 if (Event.SourceType == "MACRO" && Event.SourceId && Event.Action == "RUN")
{
var msg = CreateMsg();
msg.StringToMsg(GetObjectParams("CAM", "2"));
if(msg.GetParam("color") == "1")
{
DoReactStr("CAM", "2", "REC", "");
}
}