IsViewTitleVisible

Verifies that the specified view's title window is visible.

Syntax

rhinoscriptsyntax.IsViewTitleVisible (view=None)

rhinoscript.view.IsViewTitleVisible (view=None)

Parameters

view

Optional.  String of Guid.  The title or identifier of the view.  If omitted, the current active view is used.

Returns

Boolean

True or False indicating success or failure.

Example

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

Also See

ShowViewTitle