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)
Line 5: Line 5:
|[[Std_TreeSyncView|TreeSyncView]]
|[[Std_TreeSyncView|TreeSyncView]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu|Std View Menu]]
|IconL=
|IconL=Std_RandomColor.svg
|IconR=Std_TreeSyncView.svg
|IconR=Std_TreeSyncView.svg
|IconC=Freecad.svg
|IconC=Freecad.svg
Line 52: Line 52:
FreeCADGui.activateWorkbench("PartDesignWorkbench")
FreeCADGui.activateWorkbench("PartDesignWorkbench")
}}
}}



{{Docnav
{{Docnav
Line 57: Line 58:
|[[Std_TreeSyncView|TreeSyncView]]
|[[Std_TreeSyncView|TreeSyncView]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu|Std View Menu]]
|IconL=
|IconL=Std_RandomColor.svg
|IconR=Std_TreeSyncView.svg
|IconR=Std_TreeSyncView.svg
|IconC=Freecad.svg
|IconC=Freecad.svg

Revision as of 15:07, 6 January 2021

Std Workbench

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

Description

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

Usage

  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.

Notes

Preferences

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

Scripting

See also: FreeCAD Scripting Basics.

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