Important
|
Deprecated in 3.0. Please use children attribute in [class-netobj]. |
GetObjectChildren(object) => Array
Return array of child objects for the object.
object |
Target object. |
Return
Array of [class-netobj] instances.
Example
// Log names and ids of all accessible child objects for current node children = GetObjectChildren($node); for(p : children) { trace(1, "Child object: name='" .. p.name .. "' id=" .. p.id); }