Std ViewZoomOut/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/ru |Std ViewZoomIn |Std ViewBoxZoom |Std View Menu |IconL=Std_ViewZoomIn.svg |IconR=Std_ViewBoxZoom....")
No edit summary
Line 10: Line 10:
}}
}}


<div class="mw-translate-fuzzy">
{{GuiCommand/ru
{{GuiCommand/ru
|Icon=Zoom-out.svg
|Name=Std ViewZoomOut
|Name=Std ViewZoomOut
|Name/ru=Уменьшить
|Name/ru=Уменьшить
|MenuLocation=[[Std View Menu/ru|Вид]] → Масштаб‏‎ → Уменьшить
|MenuLocation=Вид → Масштаб‏‎ → Уменьшить
|Workbenches=All
|Workbenches=All
|Shortcut=Ctrl + -
|Shortcut={{KEY|Ctrl}}+{{KEY|-}}
|SeeAlso=[[Std ViewZoomIn/ru|Увеличить]], [[Std ViewBoxZoom/ru|Увеличить область]]
|SeeAlso=[[Std_ViewZoomIn/ru|Увеличить]], [[Std_ViewBoxZoom/ru|Увеличить область]]
}}
}}
</div>


==Description==
==Description==

Revision as of 18:59, 7 May 2020

Other languages:

Уменьшить

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

Description

The Std ViewZoomOut command zooms out in the active 3D view.

Usage

  1. There are several ways to invoke the command:
    • Select the View → Zoom → Zoom Out 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 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()