TechDraw ShowAll: Difference between revisions

From FreeCAD Documentation
m ((Vertical Docnav))
(update)
Line 4: Line 4:
<!--T:1-->
<!--T:1-->
{{Docnav
{{Docnav
|[[TechDraw_DecorateLine|DecorateLine]]
|[[TechDraw_DecorateLine|Change Appearance of Line(s)]]
|[[TechDraw WeldingSymbol|WeldingSymbol]]
|[[TechDraw WeldingSymbol|WeldingSymbol]]
|[[TechDraw_Module|TechDraw]]
|[[TechDraw_Module|TechDraw]]
|IconL=techdraw-linedecor.svg
|IconL=TechDraw_DecorateLine.svg
|IconC=Workbench_TechDraw.svg
|IconC=Workbench_TechDraw.svg
|IconR=techdraw-weldsymbol.svg
|IconR=techdraw-weldsymbol.svg
}}
}}



<!--T:2-->
<!--T:2-->
{{GuiCommand
{{GuiCommand
|Name=TechDraw ShowAll
|Name=TechDraw ShowAll
|Icon=techdraw-showall.svg
|MenuLocation=TechDraw → ShowAll
|MenuLocation=TechDraw → ShowAll
|Workbenches=[[TechDraw Module|TechDraw]]
|Workbenches=[[TechDraw Module|TechDraw]]
|SeeAlso=[[TechDraw DecorateLine|TechDraw DecorateLine]]
|SeeAlso=[[TechDraw_DecorateLine|Change Appearance of Line(s)]]
|Version=0.19
|Version=0.19
}}
}}
Line 32: Line 30:
<!--T:6-->
<!--T:6-->
# Select a View on a Page or in the tree.
# Select a View on a Page or in the tree.
# Press the {{Button|[[Image:Techdraw-showall.svg|16px]] [[TechDraw ShowAll|ShowAll]]}} button
# Press the {{Button|[[Image:TechDraw_ShowAll.svg|16px]] [[TechDraw_ShowAll|Show/Hide Invisible Edges]]}} button
# The state of the invisible lines in the View will be reversed.
# The state of the invisible lines in the View will be reversed.


Line 55: Line 53:
}}
}}
<translate>
<translate>

==Notes== <!--T:12-->


<!--T:13-->
<!--T:13-->
{{Docnav
{{Docnav
|[[TechDraw_DecorateLine|DecorateLine]]
|[[TechDraw_DecorateLine|Change Appearance of Line(s)]]
|[[TechDraw WeldingSymbol|WeldingSymbol]]
|[[TechDraw WeldingSymbol|WeldingSymbol]]
|[[TechDraw_Module|TechDraw]]
|[[TechDraw_Module|TechDraw]]
|IconL=techdraw-linedecor.svg
|IconL=TechDraw_DecorateLine.svg
|IconC=Workbench_TechDraw.svg
|IconC=Workbench_TechDraw.svg
|IconR=techdraw-weldsymbol.svg
|IconR=techdraw-weldsymbol.svg
Line 70: Line 66:
<!--T:14-->
<!--T:14-->
{{TechDraw Tools navi}}
{{TechDraw Tools navi}}



<!--T:15-->
<!--T:15-->

Revision as of 15:46, 2 February 2020

TechDraw ShowAll

Menu location
TechDraw → ShowAll
Workbenches
TechDraw
Default shortcut
None
Introduced in version
0.19
See also
Change Appearance of Line(s)

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 Show/Hide Invisible Edges 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()