ShowViewTitle

Shows or hides the title window of a view.

Syntax

rhinocriptsyntax.ShowViewTitle ( view=None, show=True)

rhinocript.view.ShowViewTitle ( view=None, show=True)

Parameters

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).

Returns

None

Example

import rhinoscriptsyntax as rs

view = rs.CurrentView()

if rs.IsViewTitleVisible(view)==False:

    rs.ShowViewTitle( view, True )

Also See

IsViewTitleVisible