GetDetailViews

I found a help topic for this method in Rhino 5 but can’t seem to access the method in the python editor. Can anyone help with this.

https://developer.rhino3d.com/5/api/RhinoCommonWin/html/M_Rhino_Display_RhinoPageView_GetDetailViews.htm

Eric

Hi Eric,

import Rhino

pageView_L = Rhino.RhinoDoc.ActiveDoc.Views.GetPageViews()

for pageView in pageView_L:
    print "pageView.PageName: ", pageView.PageName
    
    detailView_L = pageView.GetDetailViews()
    for detailView in detailView_L:
        print "detailView.Name: ", detailView.Name

Thanks for the fast reply. I’ll try it out.

Eric

Worked great. Thanks.

Eric