RestoreNamedCPlane

Restores a named construction plane to the specified view.

Syntax

rhinoscriptsyntax.RestoreNamedCPlane (cplane_name, view=None)

rhinoscript.view.RestoreNamedCPlane (cplane_name, view=None)

Parameters

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.

Returns

Parameters

String

The name of the restored named construction plane if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

cplanes = rs.NamedCplanes()

if cplanes: rs.RestoreNamedCPlane( cplanes[0] )

Also See

AddNamedCPlane

DeleteNamedCPlane

NamedCPlane

NamedCPlanes