TechDraw Montrer tout

From FreeCAD Documentation
Revision as of 07:41, 17 August 2019 by David69 (talk | contribs) (Created page with "==Utilisation==")
Other languages:


Template:GuiCommand/Fr

Description

L'outil Montrer tout affiche ou masque les lignes invisibles dans une vue. Notez que "invisible" est un état esthétique, à ne pas confondre avec les lignes cachées qui sont des constructions géométriques.

Utilisation

  1. Select a View on a Page or in the tree.
  2. Press the File:Techdraw-showall.svg ShowAll button
  3. The state of the invisible lines in the View will be reversed.

Properties

The ShowAll tool has no properties, as it is not a Document Object.

Scripting

See also: TechDraw API and FreeCAD Scripting Basics.

The effect of the ShowAll tool can be duplicated in macros or the Python console.

>>> v = App.ActiveDocument.View
>>> vvo = v.ViewObject
>>> vvo.ShowAllEdges = True
>>> App.activeDocument().recompute()

Notes