Modifica: Modalità modifica

From FreeCAD Documentation
Revision as of 20:27, 16 June 2020 by Renatorivo (talk | contribs)

Attiva/disattiva la modalità modifica

Posizione nel menu
Modifica → Attiva/disattiva la modalità modifica
Ambiente
Tutti
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Nessuno

Descrizione

Il comando Std Edit attiva o disattiva la modalità di modifica di un oggetto.

Utilizzo

  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.

Note

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

Script

See also: FreeCAD Scripting Basics.

Il seguente comando permette di accedre alla modalità di modifica di un determinato oggetto:

import FreeCADGui

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

Il seguente comando chiude la modalità di modifica:

import FreeCADGui

FreeCADGui.ActiveDocument.resetEdit()