Verifies that the specified view's title window is visible.
rhinoscriptsyntax.IsViewTitleVisible (view=None)
rhinoscript.view.IsViewTitleVisible (view=None)
view |
Optional. String of Guid. The title or identifier of the view. If omitted, the current active view is used. |
Boolean |
True or False indicating success or failure. |
import rhinoscriptsyntax as rs
title = rs.CurrentView()
vis = rs.IsViewTitleVisible(title)
if vis:
print "The ", title, " view's title is visible."
else:
print "The ", title, " view's title is not visible."