Verifies that an object is normal. Normal objects are objects that are neither hidden nor locked. Normal objects are visible, can be snapped to, and can be selected.
It is possible for an object to be normal but reside on a layer that is either hidden or lock. In such case, the object will report as normal.
Rhino.IsObjectNormal (strObject)
strObject |
Required. String. The identifier of an object. |
True |
The object is normal. |
False |
The object is not normal. |
Null |
On error. |
Dim strObject
'Do something here...
If Rhino.IsObjectNormal(strObject) Then
Rhino.Print "The object is normal."
Else
Rhino.Print "The object is not normal."
End If