Hi ARIS community,
I want to call the function "getConnectedObjs" in the following way :-
aout.getConnectedObjs([Constants.OT_PERS_TYPE], Constants.EDGES_IN)
I have trouble accessing the aout object.
I only know the type of the aout object, and was thinking if there is a method that can help me get the aout object using the type.
Thanks!
Robert Goldenbaum on
As in the other post - you get an array of object definitions from this. So you can use all methods of ObjDef on the single items in the array - like ObjDef.Name(nLoc) or ObjDef.Attribute(Constants.AT_NAME, nLoc).getValue()...