TechDraw ShowAll: Difference between revisions

From FreeCAD Documentation
No edit summary
m ((Vertical Docnav))
Line 3: Line 3:


<!--T:1-->
<!--T:1-->
{{Docnav
{{Docnav|[[TechDraw_DecorateLine|DecorateLine]]|[[TechDraw WeldingSymbol|WeldingSymbol]]|[[TechDraw_Module|TechDraw]]|IconL=techdraw-linedecor.svg|IconC=Workbench_TechDraw.svg|IconR=techdraw-weldsymbol.svg}}
|[[TechDraw_DecorateLine|DecorateLine]]
|[[TechDraw WeldingSymbol|WeldingSymbol]]
|[[TechDraw_Module|TechDraw]]
|IconL=techdraw-linedecor.svg
|IconC=Workbench_TechDraw.svg
|IconR=techdraw-weldsymbol.svg
}}




Line 12: Line 19:
|MenuLocation=TechDraw → ShowAll
|MenuLocation=TechDraw → ShowAll
|Workbenches=[[TechDraw Module|TechDraw]]
|Workbenches=[[TechDraw Module|TechDraw]]
|SeeAlso=[[TechDraw DecorateLine]]
|SeeAlso=[[TechDraw DecorateLine|TechDraw DecorateLine]]
|Version=0.19
|Version=0.19
}}
}}
Line 36: Line 43:


<!--T:10-->
<!--T:10-->
{{Emphasis|See also:}} [[TechDraw API]] and [[FreeCAD Scripting Basics]].
{{Emphasis|See also:}} [[TechDraw API|TechDraw API]] and [[FreeCAD Scripting Basics|FreeCAD Scripting Basics]].


<!--T:11-->
<!--T:11-->
The effect of the ShowAll tool can be duplicated in [[macros]] or the [[Python]] console.
The effect of the ShowAll tool can be duplicated in [[macros|macros]] or the [[Python|Python]] console.
</translate>
</translate>
{{Code|code=
{{Code|code=
Line 52: Line 59:


<!--T:13-->
<!--T:13-->
{{Docnav
{{Docnav|[[TechDraw_DecorateLine|DecorateLine]]|[[TechDraw WeldingSymbol|WeldingSymbol]]|[[TechDraw_Module|TechDraw]]|IconL=techdraw-linedecor.svg|IconC=Workbench_TechDraw.svg|IconR=techdraw-weldsymbol.svg}}
|[[TechDraw_DecorateLine|DecorateLine]]
|[[TechDraw WeldingSymbol|WeldingSymbol]]
|[[TechDraw_Module|TechDraw]]
|IconL=techdraw-linedecor.svg
|IconC=Workbench_TechDraw.svg
|IconR=techdraw-weldsymbol.svg
}}


<!--T:14-->
<!--T:14-->

Revision as of 17:26, 15 October 2019


File:Techdraw-showall.svg TechDraw ShowAll

Menu location
TechDraw → ShowAll
Workbenches
TechDraw
Default shortcut
None
Introduced in version
0.19
See also
TechDraw DecorateLine

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