NormalObjects



Your Ad Here

Returns the identifiers of all normal objects in the document.  Normal objects are visible, can be snapped to, and are independent of selection state.

Syntax

Rhino.NormalObjects ([blnIncludeLights])

Parameters

blnIncludeLights

Optional.  Boolean.  Include light objects.  If omitted, light objects are not returned (False).

Returns

Array

An array of strings identifying the objects if successful.

Null

If not successful, or on error.

Example

Dim arrObjects, strObject

arrObjects = Rhino.NormalObjects

If IsArray(arrObjects) Then

For Each strObject In arrObjects

Rhino.Print "Object identifier: " & strObject

Next

End If

Also See

AllObjects

HiddenObjects

LockedObjects

ReferenceObjects

Return to Rhino Index


Your Ad Here