Returns the names of all named views in the document.
rhinoscriptsyntax.NamedViews()
rhinoscript.view.NamedViews()
None.
List |
A list of strings identifying the named views if successful. |
import rhinoscriptsyntax as rs
views = rs.NamedViews()
if views:
for view in views: print view