Std Edit

From FreeCAD Documentation
Revision as of 17:06, 11 October 2020 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

Std Edit

Umístění Menu
Edit → Toggle Editmode
Pracovní stoly
All
Výchozí zástupce
Nikdo
Představen ve verzi
-
Viz také
...

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

  • 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.

Limitations

  • Some toolbars/function will grey-out (become inactive) on the user interface when edit mode is enabled.
→ The solution is to press the Close button to exit 'edit mode' to reactivate/access those functions.

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)

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

import FreeCADGui

FreeCADGui.ActiveDocument.resetEdit()