Versions Compared

Key

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

The GetObjectChildIds method returns IDs of child the identification (registration) numbers of the objects of the specified type created under given object.that are below the specified object in the object hierarchy.

Syntax for method invocation:Method call syntax

Code Block
languagejs
function GetObjectParentId(parent : String, id : String, objtype : String) : String[]

Method arguments:

  1. parent - Required is a required argument. The It specifies the type of the system object for which child objects you want to find out child objects . It takes the following . Possible values:   Type – String type, range – existing is limited by object types registered in the system.
  2. id - Required is a required argument. Identification It corresponds to the identification (registration) number of the object of the type set in the parentargument. It takes the following values:  Type – String, range – existing identification numbers of the specified by the parent argument. Possible values: String type, range is limited by the identification numbers of objects of the specified type registered in the system.
  3. objtype - Required is a required argument. The It specifies the type of the child objects whose identification numbers should be returned. It takes the following values:  Type – String, range – existing object types.system object which is a child of the type specified by the parent argument. Possible values: String type, range is limited by object types registered in the system.

Example. On macro 1, arm all cameras on the WS2 computerExample. Arm all cameras on WS2 computer on Macro 1.

Code Block
languagejs
if (Event.SourceType == "MACRO" && Event.Action == "RUN" && Event.SourceId == "1")
{
 var children = GetObjectChildIds("AxxonNetSLAVE","DESKTOP-UBOS6BK","CAM");
 ch=children.split(",");
 for (i=0;i<ch.length; i++ )
 {
  DoReactStr("CAM",ch[i],"ARM","");
 }
}

...