Std ViewZoomIn/it: Difference between revisions

From FreeCAD Documentation
(Created page with "==Preferenze==")
(Created page with "==Script==")
Line 42: Line 42:
* The zoom factor can be changed in the preferences: {{MenuCommand|Edit → Preferences... → Display → Navigation → Zoom step}}. This setting also affects scroll wheel zoom. See [[Preferences_Editor#Navigation|Preferences Editor]].
* The zoom factor can be changed in the preferences: {{MenuCommand|Edit → Preferences... → Display → Navigation → Zoom step}}. This setting also affects scroll wheel zoom. See [[Preferences_Editor#Navigation|Preferences Editor]].


==Scripting==
==Script==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].

Revision as of 21:28, 15 April 2020

Ingrandisci

Posizione nel menu
Visualizza → Zoom‏‎ → Ingrandisci
Ambiente
Tutti
Avvio veloce
Ctrl++
Introdotto nella versione
-
Vedere anche
Riduci, Finestra di ingrandimento

Descrizione

Descrizione

Rende più grande il contenuto nella vista 3D.

Utilizzo

Uso

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

Note

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

Preferenze

  • 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.

Script

See also: FreeCAD Scripting Basics.

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

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.zoomIn()