TechDraw ShowAll/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "{{GuiCommand/Fr |Name=TechDraw ShowAll |Name/fr =Montrer tout TechDraw |Icon=techdraw-showall.svg |MenuLocation=TechDraw → Show/Hide invisible edges in a View |Workbenches=[...")
Line 11: Line 11:




{{GuiCommand
{{GuiCommand/Fr
|Name=TechDraw ShowAll
|Name=TechDraw ShowAll
|Name/fr =Montrer tout TechDraw
|Icon=techdraw-showall.svg
|Icon=techdraw-showall.svg
|MenuLocation=TechDraw → ShowAll
|MenuLocation=TechDraw → Show/Hide invisible edges in a View
|Workbenches=[[TechDraw Module|TechDraw]]
|Workbenches=[[TechDraw Module/fr|Atelier TechDraw]]
|SeeAlso=[[TechDraw DecorateLine]]
|SeeAlso=[[TechDraw DecorateLine/fr|Apparence des lignes TechDraw]]
|Version=0.19
|Version=0.19
}}
}}

Revision as of 07:40, 17 August 2019

Other languages:


Template:GuiCommand/Fr

Description

The ShowAll tool shows or hide invisible lines in a View. Note that "invisible" is a cosmetic state, not to be confused with hidden lines which are geometric constructs.

How to use

  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