TechDraw ShowAll: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 6: Line 6:
|[[TechDraw_DecorateLine|DecorateLine]]
|[[TechDraw_DecorateLine|DecorateLine]]
|[[TechDraw_WeldSymbol|WeldSymbol]]
|[[TechDraw_WeldSymbol|WeldSymbol]]
|[[TechDraw_Module|TechDraw]]
|[[TechDraw_Workbench|TechDraw]]
|IconL=TechDraw_DecorateLine.svg
|IconL=TechDraw_DecorateLine.svg
|IconR=TechDraw_WeldSymbol.svg
|IconR=TechDraw_WeldSymbol.svg
Line 16: Line 16:
|Name=TechDraw ShowAll
|Name=TechDraw ShowAll
|MenuLocation=TechDraw → ShowAll
|MenuLocation=TechDraw → ShowAll
|Workbenches=[[TechDraw_Module|TechDraw]]
|Workbenches=[[TechDraw_Workbench|TechDraw]]
|Version=0.19
|Version=0.19
|SeeAlso=[[TechDraw_DecorateLine|TechDraw Change Appearance of Line(s)]]
|SeeAlso=[[TechDraw_DecorateLine|TechDraw Change Appearance of Line(s)]]
Line 59: Line 59:
|[[TechDraw_DecorateLine|DecorateLine]]
|[[TechDraw_DecorateLine|DecorateLine]]
|[[TechDraw_WeldSymbol|WeldSymbol]]
|[[TechDraw_WeldSymbol|WeldSymbol]]
|[[TechDraw_Module|TechDraw]]
|[[TechDraw_Workbench|TechDraw]]
|IconL=TechDraw_DecorateLine.svg
|IconL=TechDraw_DecorateLine.svg
|IconR=TechDraw_WeldSymbol.svg
|IconR=TechDraw_WeldSymbol.svg

Revision as of 16:25, 26 August 2021

TechDraw ShowAll

Menu location
TechDraw → ShowAll
Workbenches
TechDraw
Default shortcut
None
Introduced in version
0.19
See also
TechDraw 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.

Usage

  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()