Versions Compared

Key

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

The GetObjectParentType method returns the type of the parent object of for the current specified object according to the system object hierarchy.          

Method call syntaxSyntax for method invocation:

Code Block
languagejavascript
function GetObjectParentType (objtype : String) : String

Method arguments:

  1. objtype

...

  1. is a required argument. It corresponds to the type of system object for which you want to return the type of the parent object

...

  1. . Possible values:

...

  1. String type, range

...

  1. is limited by object types allowed in the system.

...

Info
titleNote

In the hierarchy of system objects, the Main object is the highest level object

...

.

...

This object is the parent object for all objects of the Computer type, Screen

...

type and

...

others.

Usage examples

Problem. When Macro 1 startsExample. On macro 1, display in the debugger debug window the names of four object types of higher hierarchical order objects, starting from the detection zone, in the order of the hierarchy provided by Axxon PSIM.

Code Block
languagejavascript
if (Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN")
{
 var objtype = "CAM_ZONE";
 DebugLogString(objtype);
 for(var i = 1; i<=4; i=i+1)
 {
  objtype = GetObjectParentType(objtype);
  DebugLogString(objtype);
 }
}

...