NamedCPlanes

Returns the names of all named construction planes in the document.

Syntax

rhinoscriptsyntax.NamedCPlanes ()

rhinoscript.view.NamedCPlanes ()

Parameters

None.

Returns

List

A zero-based, one-dimensional array of strings identifying the named construction planes if successful.

Example

import rhinoscriptsyntax as rs

cplanes = rs.NamedCPlanes()

if cplanes:

    for cplane in cplanes: print cplane

Also See

AddNamedCPlane

DeleteNamedCPlane

NamedCPlane

RestoreNamedCPlane