TechDraw ShowAll/it: Difference between revisions

From FreeCAD Documentation
(Created page with "Lo strumento Mostra tutto non ha proprietà, in quanto non è un Document Object.")
(Created page with "{{Emphasis|Vedere anche:}} TechDraw API e Nozioni di base sugli script di FreeCAD.")
Line 30: Line 30:
== Script ==
== Script ==


{{Emphasis|See also:}} [[TechDraw API]] and [[FreeCAD Scripting Basics]].
{{Emphasis|Vedere anche:}} [[TechDraw API/it|TechDraw API]] e [[FreeCAD Scripting Basics/it|Nozioni di base sugli script di FreeCAD]].


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.

Revision as of 17:25, 15 October 2019

Other languages:


File:Techdraw-showall.svg Mostra tutto

Posizione nel menu
TechDraw → Mostra tutto
Ambiente
TechDraw
Avvio veloce
Nessuno
Introdotto nella versione
0.19
Vedere anche
Decora linea

Descrizione

Lo strumento Mostra tutto mostra o nasconde le linee invisibili in una vista. Notare che "invisibile" è uno stato cosmetico, da non confondere con le linee nascoste che sono costrutti geometrici.

Utilizzo

  1. Selezionare una vista in una pagina o nella struttura.
  2. Premere il pulsante File:Techdraw-showall.svg Mostra tutto.
  3. Lo stato delle linee invisibili nella vista viene invertito.

Proprietà

Lo strumento Mostra tutto non ha proprietà, in quanto non è un Document Object.

Script

Vedere anche: TechDraw API e Nozioni di base sugli script di FreeCAD.

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

Note