Std ViewZoomOut/it: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Created page with "{{Docnav/it |Ingrandisci |Finestra di ingrandimento |Menu Visualizza |IconL=Std_ViewZoomIn.svg |IconR=Std_Vie...")
Line 1: Line 1:
<languages/>
<languages/>


{{Docnav
{{Docnav/it
|[[Std_ViewZoomIn|Std ViewZoomIn]]
|[[Std_ViewZoomIn/it|Ingrandisci]]
|[[Std_ViewBoxZoom|Std ViewBoxZoom]]
|[[Std_ViewBoxZoom/it|Finestra di ingrandimento]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu/it|Menu Visualizza]]
|IconL=Std_ViewZoomIn.svg
|IconL=Std_ViewZoomIn.svg
|IconR=Std_ViewBoxZoom.svg
|IconR=Std_ViewBoxZoom.svg

Revision as of 19:24, 16 April 2020

Zoom Out

Posizione nel menu
Visualizza → Zoom → Zoom Out
Ambiente
Tutti
Avvio veloce
Ctrl + -
Introdotto nella versione
-
Vedere anche
Zoom In, Zoom finestra

Description

Descrizione

Rende il contenuto più piccolo nella vista 3D.

Usage

Uso

  • Andare in Visualizza → Zoom‏‎ → Zoom Out o premere Ctrl + -.
  • La vista può anche essere rimpicciolita con la rotellina del mouse.

Notes

  • It is also possible to zoom with the mouse scroll wheel.

Preferences

  • The zoom factor can be changed in the preferences: Edit → Preferences... → Display → Navigation → Zoom step. This setting also affects scroll wheel zoom. See Preferences Editor.

Scripting

See also: FreeCAD Scripting Basics.

To zoom out use the zoomOut method of the ActiveView object. This method is not available if FreeCAD is in console mode.

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.zoomOut()