Std Workbench: Difference between revisions

From FreeCAD Documentation
No edit summary
(Docnav)
 
(9 intermediate revisions by 3 users not shown)
Line 2: Line 2:
<translate>
<translate>


<!--T:31-->
{{Docnav
{{Docnav
|[[Std_RandomColor|Std RandomColor]]
|[[Std_RandomColor|RandomColor]]
|[[Std_LinkSelectLinked|LinkSelectLinked]]
|[[Std_TreeSyncView|Std TreeSyncView]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu|Std View Menu]]
|IconL=
|IconL=Std_RandomColor.svg
|IconR=Std_TreeSyncView.svg
|IconR=Std_LinkSelectLinked.svg
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
Line 17: Line 18:
|Empty=1
|Empty=1
|MenuLocation=View → Workbench
|MenuLocation=View → Workbench
|Workbenches=All
|Workbenches=[[Workbenches|Workbenches]]
|SeeAlso=[[Workbenches| Workbenches]]
}}
}}


Line 40: Line 40:


<!--T:27-->
<!--T:27-->
* Additional [[External_Workbenches|External Workbenches]] can be downloaded with the [[Image:AddonManager.svg|24px]] [[Addon_Manager|Addon Manager]].
* Additional [[External_Workbenches|External Workbenches]] can be downloaded with the [[Image:Std_AddonMgr.svg|24px]] [[Std_AddonMgr|Addon Manager]].


==Preferences==
==Preferences== <!--T:32-->


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


==Scripting==
==Scripting== <!--T:34-->


<!--T:35-->
{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].


<!--T:36-->
To change the worbench use the {{incode|activateWorkbench}} method of the FreeCADGui module. This method is not available if FreeCAD is in console mode.
To change the worbench use the {{incode|activateWorkbench}} method of the FreeCADGui module. This method is not available if FreeCAD is in console mode.


Line 60: Line 63:
<translate>
<translate>



<!--T:37-->
{{Docnav
{{Docnav
|[[Std_RandomColor|Std RandomColor]]
|[[Std_RandomColor|RandomColor]]
|[[Std_LinkSelectLinked|LinkSelectLinked]]
|[[Std_TreeSyncView|Std TreeSyncView]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu|Std View Menu]]
|IconL=
|IconL=Std_RandomColor.svg
|IconR=Std_TreeSyncView.svg
|IconR=Std_LinkSelectLinked.svg
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
Line 73: Line 78:
{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{Interface navi{{#translation:}}}}
{{Interface navi{{#translation:}}}}
{{clear}}

Latest revision as of 19:34, 9 October 2023

Std Workbench

Menu location
View → Workbench
Workbenches
Workbenches
Default shortcut
None
Introduced in version
-
See also
None

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