SOLIDOS API - SolidosGetChildNames(parentHandle, objectName)


SolidosGetChildNames(parentHandle) - Returns the list of names of the child items of the specified item


Example of usage in Visual Lisp:

(setq networks     (SolidosGetRootNode "Networks")
      networkNames (SolidosGetChildNames networks))
;("REDE 01" "REDE 02")

Example usage in Dynamo:

networks = SolidosAPI.SolidosGetRootNode("Networks");
networkNames = SolidosAPI.SolidosGetChildNames (networks);
#["REDE 01", "REDE 02"]