TechDraw Montrer tout

From FreeCAD Documentation
Revision as of 07:42, 17 August 2019 by David69 (talk | contribs) (Created page with "==Propriétés==")
Other languages:


Template:GuiCommand/Fr

Description

L'outil Montrer tout affiche ou masque les lignes invisibles dans une vue. Notez que "invisible" est un état esthétique, à ne pas confondre avec les lignes cachées qui sont des constructions géométriques.

Utilisation

  1. Sélectionnez une vue sur une page ou dans l'arborescence.
  2. Appuyez sur le bouton File:Techdraw-showall.svg Show/Hide invisible edges in a View.
  3. L’état des lignes invisibles dans la vue sera inversé.

Propriétés

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