Std Workbench/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "==Настройки==")
(Created page with "{{Emphasis|Смотрите так же:}} Основы составления скриптов в FreeCAD.")
Line 45: Line 45:
==Scripting==
==Scripting==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{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.
To change the worbench use the {{incode|activateWorkbench}} method of the FreeCADGui module. This method is not available if FreeCAD is in console mode.

Revision as of 00:16, 3 August 2021

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.

Scripting

Смотрите так же: Основы составления скриптов в 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")