TechDraw ShowAll/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "==Свойства==")
(Created page with "==Программирование==")
Line 32: Line 32:
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==


{{Emphasis|See also:}} [[TechDraw_API|TechDraw API]] and [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|See also:}} [[TechDraw_API|TechDraw API]] and [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].

Revision as of 16:48, 15 September 2021

Other languages:

TechDraw ShowAll

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

Описание

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.

Применение

  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.

Свойства

The ShowAll tool has no properties, as it is not a Document Object.

Программирование

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