Shows or hides the title window of a view.
rhinocriptsyntax.ShowViewTitle ( view=None, show=True)
rhinocript.view.ShowViewTitle ( view=None, show=True)
view |
Optional. String or Guid. The title or identifier of the view. If omitted, the current active view is used. |
state |
Optional. Boolean. The visible state of the view's title window. If omitted, the title will be shown (True). |
None
import rhinoscriptsyntax as rs
view = rs.CurrentView()
if rs.IsViewTitleVisible(view)==False:
rs.ShowViewTitle( view, True )