Go to documentation repository
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 | ||
---|---|---|
| ||
function GetObjectParentType (objtype : String) : String |
Method arguments:
...
...
...
...
...
Info | ||
---|---|---|
| ||
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 | ||
---|---|---|
| ||
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); } } |