Std Workbench/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "{{GuiCommand/ru |Name=Std Workbench |Name/ru=Std Workbench |MenuLocation=Вид → Верстак |Workbenches=All |Shortcut=... |SeeAlso=... }}")
 
(Updating to match new version of source page)
 
(26 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>


<div class="mw-translate-fuzzy">
{{Template:UnfinishedDocu}}
{{Docnav/ru
|[[Std_RandomColor/ru|Команда "Случайный цвет"]]
|[[Std_TreeSyncView/ru|Опция "Синхронизировать вид"]]
|[[Std_View_Menu/ru|Меню "Вид"]]
|IconL=Std_RandomColor.svg
|IconR=Std_TreeSyncView.svg
|IconC=Freecad.svg
}}
</div>


<div class="mw-translate-fuzzy">
<!--Empty=1 to suppress icon-->
{{GuiCommand/ru
{{GuiCommand/ru
|Name=Std Workbench
|Name=Std Workbench
|Name/ru=Std Workbench
|Name/ru=Std Workbench
|Empty=1
|MenuLocation=[[Std View Menu/ru|Вид]] → Верстак
|MenuLocation={{StdMenu|[[Std View Menu/ru|Вид]]}} → Верстак
|Workbenches=All
|Workbenches=[[Workbenches/ru|Верстаки]]
|Shortcut=...
|SeeAlso=...
|SeeAlso=
}}
}}
</div>


<span id="Description"></span>
==Описание==


The '''Std Workbench''' command activates a selected [[Workbenches|workbench]] including its graphical user interface (GUI).
ToDo.


[[Image:FreeCAD_interface_base_divisions.svg|800px]]
{{Caption|The Workbench dropdown list indicated by number 10 in the standard [[interface|interface]]}}


<span id="Usage"></span>
[[Category:UnfinishedDocu]]
==Применение==


# There are several ways to invoke the command:
{{clear}}
#* Select a workbench from the '''Workbench dropdown list''' in the Workbench toolbar. This option is not available if the current workbench is {{incode|<none>}} (no workbench).
<languages/>
#* Select a workbench from the {{MenuCommand|View → Workbench}} sub-menu.

<span id="Notes"></span>
==Примечания==

* Additional [[External_Workbenches|External Workbenches]] can be downloaded with the [[Image:Std_AddonMgr.svg|24px]] [[Std_AddonMgr|Addon Manager]].

<span id="Preferences"></span>
==Настройки==

* The start up workbench can be changed in the preferences: {{MenuCommand|Edit → Preferences... → General → General → Start up}}. See [[Preferences_Editor#General|Preferences Editor]].

<span id="Scripting"></span>
==Программирование==

{{Emphasis|Смотрите так же:}} [[FreeCAD_Scripting_Basics/ru|Основы составления скриптов в FreeCAD]].

To change the worbench use the {{incode|activateWorkbench}} method of the FreeCADGui module. This method is not available if FreeCAD is in console mode.

{{Code|code=
import FreeCADGui

FreeCADGui.activateWorkbench("PartDesignWorkbench")
}}


<div class="mw-translate-fuzzy">
{{Docnav/ru
|[[Std_RandomColor/ru|Команда "Случайный цвет"]]
|[[Std_TreeSyncView/ru|Опция "Синхронизировать вид"]]
|[[Std_View_Menu/ru|Меню "Вид"]]
|IconL=Std_RandomColor.svg
|IconR=Std_TreeSyncView.svg
|IconC=Freecad.svg
}}
</div>

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

Latest revision as of 19:48, 9 October 2023

Std Workbench

Системное название
Std Workbench
Расположение в меню
Вид → Верстак
Верстаки
Верстаки
Быстрые клавиши
Нет
Представлено в версии
-
См. также
Нет

Описание

The Std Workbench command activates a selected workbench including its graphical user interface (GUI).

The Workbench dropdown list indicated by number 10 in the standard interface

Применение

  1. There are several ways to invoke the command:
    • Select a workbench from the Workbench dropdown list in the Workbench toolbar. This option is not available if the current workbench is <none> (no workbench).
    • Select a workbench from the View → Workbench sub-menu.

Примечания

Настройки

  • The start up workbench can be changed in the preferences: Edit → Preferences... → General → General → Start up. See Preferences Editor.

Программирование

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

To change the worbench use the activateWorkbench method of the FreeCADGui module. This method is not available if FreeCAD is in console mode.

import FreeCADGui

FreeCADGui.activateWorkbench("PartDesignWorkbench")