Verifies that the objects on a layer can be changed (normal).
Rhino.IsLayerChangeable (strLayer)
strLayer |
Required. String. The name or identifier of an existing layer. |
True |
If successful. |
False |
If not successful. |
Null |
On error. |
Dim strLayer
strLayer = Rhino.GetString("Layer name")
If Rhino.IsLayer(strLayer) Then
If Rhino.IsLayerChangeable(strLayer) Then
Rhino.Print "The layer is changeable."
Else
Rhino.Print "The layer is not changeable."
End If
Else
Rhino.Print "The layer does not exist."
End If