NamedViews

Returns the names of all named views in the document.

Syntax

rhinoscriptsyntax.NamedViews()

rhinoscript.view.NamedViews()

Parameters

None.

Returns

List

A list of strings identifying the named views if successful.

Example

import rhinoscriptsyntax as rs

views = rs.NamedViews()

if views:

    for view in views: print view

Also See

AddNamedView

DeleteNamedView

RestoreNamedView