Std ViewZoomIn/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Emphasis|Смотри так же:}} Основы скриптов в FreeCAD.")
(Created page with "{{Docnav/ru |Std ViewIvIssueCamPos |Std ViewZoomOut |Std View Menu |IconL=Std_ViewIvIssueCamPos.svg |I...")
Line 49: Line 49:
}}
}}


{{Docnav
{{Docnav/ru
|[[Std_ViewIvIssueCamPos|Std ViewIvIssueCamPos]]
|[[Std_ViewIvIssueCamPos/ru|Std ViewIvIssueCamPos]]
|[[Std_ViewZoomOut|Std ViewZoomOut]]
|[[Std_ViewZoomOut/ru|Std ViewZoomOut]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu/ru|Std View Menu]]
|IconL=Std_ViewIvIssueCamPos.svg
|IconL=Std_ViewIvIssueCamPos.svg
|IconR=Std_ViewZoomOut.svg
|IconR=Std_ViewZoomOut.svg

Revision as of 18:57, 7 May 2020

Other languages:

Увеличить

Системное название
Std ViewZoomIn
Расположение в меню
Вид → Масштаб‏‎ → Увеличить
Верстаки
All
Быстрые клавиши
Ctrl++
Представлено в версии
-
См. также
Уменьшить, Увеличить область

Описание

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

Использование

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

Примечания

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

Настройки

  • 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

Смотри так же: Основы скриптов в FreeCAD.

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