Std ToggleVisibility: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 45: Line 45:


* The action of this command cannot be undone with [[Std_Undo|Std Undo]].
* The action of this command cannot be undone with [[Std_Undo|Std Undo]].
* The visibility of an object can also be changed through its {{PropertyData|Visibility}} parameter in the [[Property_editor|Property editor]] or the [[Combo_view|Combo view]].
* The visibility of an object can also be changed through its related {{PropertyData|Visibility}} parameter in the [[Property_editor|Property editor]] or the [[Combo_view|Combo view]].


==Scripting==
==Scripting==

Revision as of 17:20, 6 April 2020

This documentation is a work in progress. Please don't mark it as translatable since it will change in the next hours and days.


Std ToggleVisibility

Menu location
View → Toggle visibility
Workbenches
All
Default shortcut
Space
Introduced in version
-
See also
Std ShowSelection, Std HideSelection, Std ToggleObjects, Std ShowObjects, Std HideObjects

Description

The Std ToggleVisibility command toggles the visibility of selected objects in 3D views.

Usage

  1. Select one or more objects.
    • Invisible objects can be selected in the Tree view.
    • Be careful when you use Ctrl+A to select all objects in the Tree view. This will also selects sub-elements of PartDesign bodies and objects used for Part Booleans. In most cases these should stay invisible.
    • Objects used for Part Booleans are also selected when you use Ctrl+A in a 3D view.
  2. There are several ways to invoke the command:
    • Select the View → Toggle visibility option from the menu.
    • Select the View → Visibility → Toggle visibility option from the menu.
    • Select the Toggle visibility option from the Tree view context menu. This option is not available in the PartDesign Workbench.
    • Use the keyboard shortcut: Space.

Notes

  • The action of this command cannot be undone with Std Undo.
  • The visibility of an object can also be changed through its related DataVisibility parameter in the Property editor or the Combo view.

Scripting

See also: FreeCAD Scripting Basics.

Use the show and hide methods of an object to change its visibility.

import FreeCADGui

obj = FreeCADGui.ActiveDocument.myObjectName

if obj.Visibility == True:
  obj.hide()
else:
  obj.show()