Std Edit/ko: Difference between revisions

From FreeCAD Documentation
(Created page with "'''표준 편집 모드 전환(Std Edit)''' 명령은 개체의 편집모드를 활성화하거나 비활성화합니다.")
(Created page with "==용법==")
Line 21: Line 21:
'''표준 편집 모드 전환(Std Edit)''' 명령은 개체의 편집모드를 활성화하거나 비활성화합니다.
'''표준 편집 모드 전환(Std Edit)''' 명령은 개체의 편집모드를 활성화하거나 비활성화합니다.


==Usage==
==용법==


# If no object is in edit mode: select a single object.
# If no object is in edit mode: select a single object.

Revision as of 04:53, 1 January 2021

표준 편집 모드 전환

메뉴 위치
편집 → 편집 모드 전환
작업대
모두
기본 단축키
없음
도입 버전
-
참조
없음

설명

표준 편집 모드 전환(Std Edit) 명령은 개체의 편집모드를 활성화하거나 비활성화합니다.

용법

  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)

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

import FreeCADGui

FreeCADGui.ActiveDocument.resetEdit()