Restores a named construction plane to the specified view.
rhinoscriptsyntax.RestoreNamedCPlane (cplane_name, view=None)
rhinoscript.view.RestoreNamedCPlane (cplane_name, view=None)
cplane_name |
Required. String. The name of the named construction plane to restore. |
view |
Optional. String or Guid. The title or identifier of the view to restore the construction plane. If omitted, the current active view is used. |
String |
The name of the restored named construction plane if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
cplanes = rs.NamedCplanes()
if cplanes: rs.RestoreNamedCPlane( cplanes[0] )