Std ViewZoomIn/ro: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 1: Line 1:
<languages/>
<languages/>

{{Docnav
|[[Std_ViewIvIssueCamPos|Std ViewIvIssueCamPos]]
|[[Std_ViewZoomOut|Std ViewZoomOut]]
|[[Std_View_Menu|Std View Menu]]
|IconL=Std_ViewIvIssueCamPos.svg
|IconR=Std_ViewZoomOut.svg
|IconC=Freecad.svg
}}


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 17: Line 26:
==Descriere==
==Descriere==
Face conținutul să apară mai mare în vizualizarea 3D.
Face conținutul să apară mai mare în vizualizarea 3D.
</div>
</div>


==Usage==
==Usage==


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 27: Line 36:
</div>
</div>


==Options==
==Notes==


* It is also possible to zoom with the mouse scroll wheel.
<div class="mw-translate-fuzzy">

==Opțiuni==
==Preferences==
* The zoom step can be changed in '''Edit → Preferences → Display → 3D View'''.

</div>
* 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==

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

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

{{Code|code=
import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.zoomIn()
}}

{{Docnav
|[[Std_ViewIvIssueCamPos|Std ViewIvIssueCamPos]]
|[[Std_ViewZoomOut|Std ViewZoomOut]]
|[[Std_View_Menu|Std View Menu]]
|IconL=Std_ViewIvIssueCamPos.svg
|IconR=Std_ViewZoomOut.svg
|IconC=Freecad.svg
}}


{{Std Base navi{{#translation:}}}}
{{Std Base navi{{#translation:}}}}

Revision as of 20:38, 9 April 2020

Std ViewZoomIn

Menu location
View → Zoom‏‎ → Zoom In
Workbenches
All
Default shortcut
Ctrl + +
Introduced in version
-
See also
Zoom Out, Zoom box

Description

Descriere

Face conținutul să apară mai mare în vizualizarea 3D.

Usage

Cum se folosește

  • Go to View → Zoom‏‎ → Zoom In or press Ctrl + +.
  • The view can also be zoomed in with the mouse scroll wheel.

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