Std ViewZoomIn: Difference between revisions

From FreeCAD Documentation
(Marked this version for translation)
No edit summary
 
Line 4: Line 4:
<!--T:9-->
<!--T:9-->
{{Docnav
{{Docnav
|[[Std_ViewIvIssueCamPos|Std ViewIvIssueCamPos]]
|[[Std_ViewIvIssueCamPos|ViewIvIssueCamPos]]
|[[Std_ViewZoomOut|Std ViewZoomOut]]
|[[Std_ViewZoomOut|ViewZoomOut]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu|Std View Menu]]
|IconL=Std_ViewIvIssueCamPos.svg
|IconL=Std_ViewIvIssueCamPos.svg
Line 61: Line 61:
<!--T:17-->
<!--T:17-->
{{Docnav
{{Docnav
|[[Std_ViewIvIssueCamPos|Std ViewIvIssueCamPos]]
|[[Std_ViewIvIssueCamPos|ViewIvIssueCamPos]]
|[[Std_ViewZoomOut|Std ViewZoomOut]]
|[[Std_ViewZoomOut|ViewZoomOut]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu|Std View Menu]]
|IconL=Std_ViewIvIssueCamPos.svg
|IconL=Std_ViewIvIssueCamPos.svg

Latest revision as of 20:38, 22 December 2020

Std ViewZoomIn

Menu location
View → Zoom → Zoom In
Workbenches
All
Default shortcut
Ctrl++
Introduced in version
-
See also
Std ViewZoomOut, Std ViewBoxZoom

Description

The Std ViewZoomIn command zooms in in the active 3D view.

Usage

  1. There are several ways to invoke the command:
    • Select the View → Zoom → Zoom In option from the menu.
    • Use the keyboard shortcut: Ctrl++.

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