Std Edit: Difference between revisions

From FreeCAD Documentation
(Removed stray half of sentence.)
(Removed the https://github.com/FreeCAD/FreeCAD/blob/625502bb4770e8bb0d3f4eb5e2150fa353c8c7fb/src/Gui/ViewProvider.h#L423 link. Minor language tweak.)
Line 55: Line 55:
<translate>
<translate>


The second argument is the EditMode, an enum declared in [https://github.com/FreeCAD/FreeCAD/blob/625502bb4770e8bb0d3f4eb5e2150fa353c8c7fb/src/Gui/ViewProvider.h#L423 src/Gui/ViewProvider.h] ([https://github.com/FreeCAD/FreeCAD/blob/master/src/Gui/ViewProvider.h#L423 latest version on master]), which is declared as follows.
The second argument is the EditMode, an enum declared in [https://github.com/FreeCAD/FreeCAD/blob/master/src/Gui/ViewProvider.h#L423 src/Gui/ViewProvider.h] as follows:


{{Code|code=
{{Code|code=

Revision as of 20:56, 20 January 2021

Std Edit

Menu location
Edit → Toggle Edit mode
Workbenches
All
Default shortcut
None
Introduced in version
-
See also
None

Description

The Std Edit command activates or deactivates an object's edit mode.

Usage

  1. If no object is in edit mode: select a single object.
  2. Select the Edit → Toggle Edit mode option from the menu.
  3. Either the edit mode of the selected object is activated or the existing edit mode deactivated.

Notes

  • Some tools will be disabled (greyed-out) in the user interface while an object's edit mode is active.
  • Not all object types have an edit mode.
  • The functionality available in edit mode depends on the object type.
  • Edit mode can also be activated by double-clicking an object in the Tree view.

Scripting

See also: FreeCAD Scripting Basics.

To activate an object's edit mode use the setEdit method of the document object. This method is not available if FreeCAD is in console mode.

import FreeCADGui

FreeCADGui.ActiveDocument.setEdit("myObjectName",0)

The second argument is the EditMode, an enum declared in src/Gui/ViewProvider.h as follows:

enum EditMode {Default = 0,
               Transform,
               Cutting,
               Color,
};

To deactivate an object's edit mode use the resetEdit method of the document object.

import FreeCADGui

FreeCADGui.ActiveDocument.resetEdit()