TechDraw ShowAll: Difference between revisions

From FreeCAD Documentation
(Created page with "<languages/> <translate> <!--T:16--> {{Docnav|DecorateLine|Hatching|TechDraw|IconL=techdraw-linedecor.svg|I...")
 
mNo edit summary
Line 1: Line 1:
<languages/>
<languages/>
<translate>
<translate>

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



<!--T:1-->
{{GuiCommand
{{GuiCommand
|Name=TechDraw ShowAll
|Name=TechDraw ShowAll
Line 14: Line 14:
}}
}}


==Description== <!--T:2-->
==Description==


<!--T:8-->
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.
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== <!--T:3-->
==How to use==


<!--T:10-->
# 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|ShowAll]]}} 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.


==Properties== <!--T:19-->
==Properties==


<!--T:20-->
The ShowAll tool has no properties, as it is not a Document Object.
The ShowAll tool has no properties, as it is not a Document Object.


==Scripting== <!--T:6-->
==Scripting==


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


<!--T:13-->
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]] or the [[Python]] console.
</translate>

{{Code|code=
{{Code|code=
>>> v = App.ActiveDocument.View
>>> v = App.ActiveDocument.View
Line 45: Line 40:
>>> App.activeDocument().recompute()
>>> App.activeDocument().recompute()
}}
}}
<translate>


==Notes==


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

<!--T:17-->
{{Docnav|[[TechDraw_DecorateLine|DecorateLine]]|[[TechDraw Hatching|Hatching]]|[[TechDraw_Module|TechDraw]]|IconL=Techdraw-linedecor.svg|IconC=Workbench_TechDraw.svg|IconR=techdraw-hatch.svg}}
{{Docnav|[[TechDraw_DecorateLine|DecorateLine]]|[[TechDraw Hatching|Hatching]]|[[TechDraw_Module|TechDraw]]|IconL=Techdraw-linedecor.svg|IconC=Workbench_TechDraw.svg|IconR=techdraw-hatch.svg}}


<!--T:14-->
{{TechDraw Tools navi}}
{{TechDraw Tools navi}}



<!--T:15-->
{{Userdocnavi}}
{{Userdocnavi}}
</translate>
</translate>

Revision as of 11:37, 26 July 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