ShowWorldAxes

Shows or hides a view's world axes icon.

Syntax

rhinoscriptsyntax.ShowWorldAxes ( view=None, show=None )

rhinoscript.view.ShowWorldAxes ( view=None, show=None )

Parameters

view

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

show

Optional.  Boolean.  The world axes icon display state to set.  If omitted, the current world axes icon display state is returned.

Returns

Boolean

If show is not specified, then the world axes icon display state if successful.

Boolean

If show is specified, then the previous world axes icon display state if successful.

Example

import rhinoscriptsyntax as rs

view = rs.CurrentView()

if rs.ShowWorldAxes(view)==False:

    rs.ShowWorldAxes( view, True )

Also See

ShowGrid

ShowGridAxes