Std Workbench/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
 
(21 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
<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">
<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>
</div>


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


This command is used to activate the graphical user interface (GUI) and the tools of a specific workbench.
The '''Std Workbench''' command activates a selected [[Workbenches|workbench]] including its graphical user interface (GUI).


[[Image:FreeCAD_interface_base_divisions.svg|800px]]
It is possible to execute it in three different ways:
{{Caption|The Workbench dropdown list indicated by number 10 in the standard [[interface|interface]]}}
* the '''View''' menu,
* the drop-down menu, or,
* a Python command.


<span id="Usage"></span>
There are also two special options available: '''None''' (no workbench) and '''Complete'''[deprecated].
==Применение==


# There are several ways to invoke the command:
== How to use ==
#* 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).
#* Select a workbench from the {{MenuCommand|View → Workbench}} sub-menu.


<span id="Notes"></span>
Often the project starts in a workbench, for example with '''Sketch''', then continues in a different workbench, for example with '''Part''', to create objects.
==Примечания==
You can switch from the current workbench to a new one with one of the following ways:


* Additional [[External_Workbenches|External Workbenches]] can be downloaded with the [[Image:Std_AddonMgr.svg|24px]] [[Std_AddonMgr|Addon Manager]].
=== From the View menu ===
* In the top menu, open the {{Button|'''View'''}} → {{Button|'''Workbench'''}} menu and select a workbench. This menu is always available, even when you have previously selected the '''Complete''' or '''None''' workbench.


<span id="Preferences"></span>
=== From the drop-down menu ===
==Настройки==
* In the top menu, open the drop-down menu and select a workbench. This menu is not available when you have previously selected the '''Complete''' or '''None''' workbench.


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


<span id="Scripting"></span>
* Type the command in the console, for example: '''Gui.activateWorkbench ("DraftWorkbench")''' start the workbench '''Draft'''. Always possible.
==Программирование==


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


To change the worbench use the {{incode|activateWorkbench}} method of the FreeCADGui module. This method is not available if FreeCAD is in console mode.
Start from the drop-down menu:


{{Code|code=
[[Image: WorkbenchStd1.png|left]]
import FreeCADGui
{{Clear}}


FreeCADGui.activateWorkbench("PartDesignWorkbench")
Starting from the Python console:
}}


[[Image: WorkbenchStd2.png|left]]
{{Clear}}


<div class="mw-translate-fuzzy">
Through the console the command can also be copied:
{{Docnav/ru

|[[Std_RandomColor/ru|Команда "Случайный цвет"]]
[[Image: WorkbenchStd3.png|left]]
|[[Std_TreeSyncView/ru|Опция "Синхронизировать вид"]]
{{Clear}}
|[[Std_View_Menu/ru|Меню "Вид"]]

|IconL=Std_RandomColor.svg
== Other references ==
|IconR=Std_TreeSyncView.svg
For a general description of the workbenches, see the page [[Workbenches| Workbenches]].
|IconC=Freecad.svg
}}
</div>


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

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