Std Edit/ko: Difference between revisions

From FreeCAD Documentation
(Created page with "'''표준 편집 모드 전환(Std Edit)''' 명령은 개체의 편집모드를 활성화하거나 비활성화합니다.")
(Updating to match new version of source page)
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>


<div class="mw-translate-fuzzy">
{{Docnav
{{Docnav
|[[Std_Alignment/ko|정렬]]
|[[Std_Alignment/ko|정렬]]
Line 9: Line 10:
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
</div>


<div class="mw-translate-fuzzy">
{{GuiCommand/ko
{{GuiCommand/ko
|Name=Std Edit
|Name=Std Edit
Line 16: Line 19:
|Workbenches=모두
|Workbenches=모두
}}
}}
</div>


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


==Usage==
==용법==


<div class="mw-translate-fuzzy">
# If no object is in edit mode: select a single object.
# 편집 모드인 개체가 없다면: 단일 개체를 선택합니다.
# Select the {{MenuCommand|Edit → [[Image:Std_Edit.svg|16px]] Toggle Edit mode}} option from the menu.
# 메뉴에서 {{MenuCommand|편집 → [[Image:Std_Edit.svg|16px]] 편집 모드 전환}} 옵션을 선택합니다.
# Either the edit mode of the selected object is activated or the existing edit mode deactivated.
# 선택한 개체의 편집 모드가 활성화되거나 기존 편집 모드가 비활성화 됩니다.
</div>


==Notes==
==비고==


<div class="mw-translate-fuzzy">
* 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|Tree view]].
* [[Tree_view/ko|트리 보기]]에서 개체를 더블 클릭하여 편집모드를 활성화할 수도 있습니다.
</div>


==Scripting==
==스크립트==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|참조:}} [[FreeCAD_Scripting_Basics/ko|FreeCAD 스크립트 기초]].


개체의 편집 모드를 활성화 하려면 문서 객체의 {{incode|setEdit}} 메소드를 사용하십시오. FreeCAD가 콘솔 모드일 때는 이 메소드를 사용할 수 없습니다.
To activate an object's edit mode use the {{incode|setEdit}} method of the document object. This method is not available if FreeCAD is in console mode.


{{Code|code=
{{Code|code=
Line 46: Line 54:
}}
}}


The second argument is the EditMode. The following options are available:
To deactivate an object's edit mode use the {{incode|resetEdit}} method of the document object.

0 = Default
1 = Transform
2 = Cutting
3 = Color

개체의 편집 모드를 비활성화 하려면 문서 객체의 {{incode|resetEdit}} 메소드를 사용하십시오.


{{Code|code=
{{Code|code=
Line 55: Line 70:




<div class="mw-translate-fuzzy">
{{Docnav
{{Docnav
|[[Std_Alignment|Alignment]]
|[[Std_Alignment/ko|정렬]]
|[[Std_DlgPreferences|DlgPreferences]]
|[[Std_DlgPreferences/ko|환경 설정]]
|[[Std_Edit_Menu|Std Edit Menu]]
|[[Std_Edit_Menu/ko|표준 편집 메뉴]]
|IconL=Std_Alignment.svg
|IconL=Std_Alignment.svg
|IconR=Std_DlgPreferences.svg
|IconR=Std_DlgPreferences.svg
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
</div>


{{Std Base navi{{#translation:}}}}
{{Std Base navi{{#translation:}}}}

Latest revision as of 18:08, 11 October 2021

표준 편집 모드 전환

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

설명

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

용법

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

비고

  • 개체의 편집 모드가 활성화되면 사용자 인터페이스의 일부 도구는 비활성화(회색으로 표시됨)됩니다.
  • 모든 개체 유형에 편집 모드가 있는 것은 아닙니다.
  • 편집 모드에서 사용할 수 있는 기능은 개체 유형마다 다릅니다.
  • 트리 보기에서 개체를 더블 클릭하여 편집모드를 활성화할 수도 있습니다.

스크립트

참조: FreeCAD 스크립트 기초.

개체의 편집 모드를 활성화 하려면 문서 객체의 setEdit 메소드를 사용하십시오. FreeCAD가 콘솔 모드일 때는 이 메소드를 사용할 수 없습니다.

import FreeCADGui

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

The second argument is the EditMode. The following options are available:

0 = Default
1 = Transform
2 = Cutting
3 = Color

개체의 편집 모드를 비활성화 하려면 문서 객체의 resetEdit 메소드를 사용하십시오.

import FreeCADGui

FreeCADGui.ActiveDocument.resetEdit()