TechDraw ShowAll/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "Montrer tout TechDraw")
 
(Created page with "{{Userdocnavi/fr}}")
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
<languages/>


{{Docnav/fr
{{Docnav|[[TechDraw_DecorateLine|DecorateLine]]|[[TechDraw WeldingSymbol|WeldingSymbol]]|[[TechDraw_Module|TechDraw]]|IconL=techdraw-linedecor.svg|IconC=Workbench_TechDraw.svg|IconR=techdraw-weldsymbol.svg}}
|[[TechDraw_DecorateLine/fr|Apparence des lignes TechDraw]]
|[[TechDraw WeldingSymbol/fr|Symbole de soudure TechDraw]]
|[[TechDraw_Module/fr|Atelier TechDraw]]
|IconL=techdraw-linedecor.svg
|IconC=Workbench_TechDraw.svg
|IconR=techdraw-weldsymbol.svg
}}




{{GuiCommand
{{GuiCommand/Fr
|Name=TechDraw ShowAll
|Name=TechDraw ShowAll
|Name/fr =Montrer tout TechDraw
|Icon=techdraw-showall.svg
|Icon=techdraw-showall.svg
|MenuLocation=TechDraw → ShowAll
|MenuLocation=TechDraw → Show/Hide invisible edges in a View
|Workbenches=[[TechDraw Module|TechDraw]]
|Workbenches=[[TechDraw Module/fr|Atelier TechDraw]]
|SeeAlso=[[TechDraw DecorateLine]]
|SeeAlso=[[TechDraw DecorateLine/fr|Apparence des lignes TechDraw]]
|Version=0.19
|Version=0.19
}}
}}
Line 15: Line 23:
==Description==
==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.
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==
==Utilisation==


# Sélectionnez une vue sur une page ou dans l'arborescence.
# Select a View on a Page or in the tree.
# Press the {{Button|[[Image:Techdraw-showall.svg|16px]] [[TechDraw ShowAll|ShowAll]]}} button
# Appuyez sur le bouton {{Button|[[Image:Techdraw-showall.svg|16px]] [[TechDraw ShowAll/fr|Show/Hide invisible edges in a View]]}}.
# L’état des lignes invisibles dans la vue sera inversé.
# The state of the invisible lines in the View will be reversed.


==Properties==
==Propriétés==


L'outil Montrer tout n'a aucune propriété car il ne s'agit pas d'un objet du document.
The ShowAll tool has no properties, as it is not a Document Object.


==Scripting==
==Script==


{{Emphasis|See also:}} [[TechDraw API]] and [[FreeCAD Scripting Basics]].
{{Emphasis|Voir aussi:}} [[TechDraw API/fr|TechDraw API]] et [[FreeCAD Scripting Basics/fr|FreeCAD Scripts de base]].


The effect of the ShowAll tool can be duplicated in [[macros]] or the [[Python]] console.
Les effets de l'outil Montrer tout peut être dupliqué dans la [[macros/fr|macro]] ou la console [[Python/fr|Python]].
{{Code|code=
{{Code|code=
>>> v = App.ActiveDocument.View
>>> v = App.ActiveDocument.View
Line 39: Line 47:
}}
}}


==Notes==
==Remarques==


{{Docnav/fr
{{Docnav|[[TechDraw_DecorateLine|DecorateLine]]|[[TechDraw WeldingSymbol|WeldingSymbol]]|[[TechDraw_Module|TechDraw]]|IconL=techdraw-linedecor.svg|IconC=Workbench_TechDraw.svg|IconR=techdraw-weldsymbol.svg}}
|[[TechDraw_DecorateLine/fr|Apparence des lignes TechDraw]]
|[[TechDraw WeldingSymbol/fr|Symbole de soudure TechDraw]]
|[[TechDraw_Module/fr|Atelier TechDraw]]
|IconL=techdraw-linedecor.svg
|IconC=Workbench_TechDraw.svg
|IconR=techdraw-weldsymbol.svg
}}


{{TechDraw Tools navi}}
{{TechDraw Tools navi/fr}}




{{Userdocnavi}}
{{Userdocnavi/fr}}
{{clear}}
{{clear}}

Revision as of 07:45, 17 August 2019

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

L'outil Montrer tout n'a aucune propriété car il ne s'agit pas d'un objet du document.

Script

Voir aussi: TechDraw API et FreeCAD Scripts de base.

Les effets de l'outil Montrer tout peut être dupliqué dans la macro ou la console Python.

>>> v = App.ActiveDocument.View
>>> vvo = v.ViewObject
>>> vvo.ShowAllEdges = True
>>> App.activeDocument().recompute()

Remarques