Returns the identifiers of history descendants, or children, of a parent object. Child objects are the output of a history-supporting command.
Rhino.ObjectChildren (strObject)
strObject |
Required. String. The identifier of an object. |
Array |
An array of strings identifying the objects if successful. |
Null |
On error. |
Dim strObject, arrChildren
strObject = Rhino.GetObject
arrChildren = Rhino.ObjectChildren(strObject)
If IsArray(arrChildren) Then
Call Rhino.SelectObjects(arrChildren)
End If