Std Edit/cs: 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_DlgPreferences|Std DlgPreferences]]
|[[Std_DlgPreferences|Std DlgPreferences]]
|[[Std_Edit_Menu|Std Edit Menu]]
|[[Std_Edit_Menu|Std Edit Menu]]
|IconL=Std_Alignment.png
|IconL=Std_Alignment.svg
|IconC=Freecad.svg
|IconC=Freecad.svg
|IconR=Std_DlgPreferences.svg
|IconR=Std_DlgPreferences.svg
Line 20: Line 20:
The behaviour that occurs when entering edit mode depends on the object type. Some object types don't define any edit mode behaviour, in that case the standard behaviour (a transform widget) is used.
The behaviour that occurs when entering edit mode depends on the object type. Some object types don't define any edit mode behaviour, in that case the standard behaviour (a transform widget) is used.


You can also perform the same action by double-clicking an object in the Tree View.
You can also perform the same action by double-clicking an object in the [[Tree view]].


== Scripting ==
== Scripting ==
Line 39: Line 39:
|[[Std_DlgPreferences|Std DlgPreferences]]
|[[Std_DlgPreferences|Std DlgPreferences]]
|[[Std_Edit_Menu|Std Edit Menu]]
|[[Std_Edit_Menu|Std Edit Menu]]
|IconL=Std_Alignment.png
|IconL=Std_Alignment.svg
|IconC=Freecad.svg
|IconC=Freecad.svg
|IconR=Std_DlgPreferences.svg
|IconR=Std_DlgPreferences.svg
Line 45: Line 45:


{{Std Base navi}}
{{Std Base navi}}

{{Userdocnavi}}
{{Userdocnavi}}
{{clear}}
{{clear}}

Revision as of 17:36, 8 February 2020

Std Edit

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

Description

This command allows to enter or leave the edit mode of a selected object. An object must be either selected (then it enters edit mode) or in edit mode (then it leaves edit mode) for this command to work.

The behaviour that occurs when entering edit mode depends on the object type. Some object types don't define any edit mode behaviour, in that case the standard behaviour (a transform widget) is used.

You can also perform the same action by double-clicking an object in the Tree view.

Scripting

This enters edit mode of a determined object:

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

This closes the edit mode:

FreeCADGui.ActiveDocument.resetEdit()