표준 편집 모드 전환(Std Edit)

From FreeCAD Documentation
Revision as of 04:55, 1 January 2021 by Saltsalt (talk | contribs) (Created page with "==비고==")

표준 편집 모드 전환

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

설명

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

용법

  1. 편집 모드인 개체가 없다면: 단일 개체를 선택합니다.
  2. 메뉴에서 편집 → 편집 모드 전환 옵션을 선택합니다.
  3. 선택한 개체의 편집 모드가 활성화되거나 기존 편집 모드가 비활성화 됩니다.

비고

  • 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()