Std MergeProjects/ko: Difference between revisions

From FreeCAD Documentation
(Created page with "==선택 사항==")
(Updating to match new version of source page)
 
(15 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>

{{Docnav
{{Docnav
|[[Std_Export|Std Export]]
|[[Std_Export/ko|내보내기]]
|[[Std_ProjectInfo|Std ProjectInfo]]
|[[Std_ProjectInfo/ko|프로젝트 정보]]
|[[Std_File_Menu|Std File Menu]]
|[[Std_File_Menu/ko|표준 파일 메뉴]]
|IconL=Std_Export.svg
|IconL=Std_Export.svg
|IconR=Std_ProjectInfo.svg
|IconR=Std_ProjectInfo.svg
Line 9: Line 10:
}}
}}


<!--Empty=1 to suppress icon-->
{{GuiCommand/ko
{{GuiCommand/ko
|Name=Std MergeProjects
|Name=Std MergeProjects
Line 17: Line 17:
}}
}}


<span id="Description"></span>
==설명==
==설명==


'''표준 프로젝트 병합(Std MergeProjects)''' 명령은 FreeCAD 파일의 내용을 활성 문서에 추가합니다.
'''표준 프로젝트 병합(Std MergeProjects)''' 명령은 FreeCAD 파일의 내용을 활성 문서에 추가합니다.


<span id="Usage"></span>
==용법==
==용법==


Line 27: Line 29:
# {{Button|열기}} 버튼을 누릅니다.
# {{Button|열기}} 버튼을 누릅니다.


<span id="Options"></span>
==선택 사항==
==선택 사항==


* Press {{KEY|Esc}} or the {{Button|Cancel}} button to abort the command.
* 명령을 중지하려면 {{KEY|Esc}} 키나 {{Button|취소}} 버튼을 누릅니다.


==Notes==
<span id="Notes"></span>
==비고==


<div class="mw-translate-fuzzy">
* A project cannot be merged with itself, selecting the current file is not allowed.
* 프로젝트는 자신과 병합할 수 없으며 현재 파일을 선택할 수 없습니다.
* FreeCAD will automatically change the internal names and, depending on the preferences, labels of objects to avoid name conflicts.
* FreeCAD는 이름 충돌을 피하기 위해 환경 설정에 따라 개체의 내부 이름과 레이블을 자동으로 변경합니다.
</div>


==Preferences==
==Scripting==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
* The last used file location is stored: {{MenuCommand|Tools → Edit parameters... → BaseApp → Preferences → General → FileOpenSavePath}}.

* Duplicate labels are allowed if {{MenuCommand|Tools → Edit parameters... → BaseApp → Preferences → Document → DuplicateLabels}} is set to {{TRUE}}. This setting can also be changed in the [[Preferences_Editor#Document|Preferences Editor]].
To merge a project use the {{Incode|mergeProject}} method of the document object.

{{Code|code=
import FreeCAD

FreeCAD.ActiveDocument.mergeProject("Path_to_FCStd_project_file")
}}




{{Docnav
{{Docnav
|[[Std_Export|Std Export]]
|[[Std_Export/ko|내보내기]]
|[[Std_ProjectInfo|Std ProjectInfo]]
|[[Std_ProjectInfo/ko|프로젝트 정보]]
|[[Std_File_Menu|Std File Menu]]
|[[Std_File_Menu/ko|표준 파일 메뉴]]
|IconL=Std_Export.svg
|IconL=Std_Export.svg
|IconR=Std_ProjectInfo.svg
|IconR=Std_ProjectInfo.svg
Line 51: Line 64:
}}
}}


{{Std Base navi{{#translation:}}}}
{{Std_Base_navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{clear}}

Latest revision as of 11:48, 21 April 2024

표준 프로젝트 병합

메뉴 위치
파일 → 프로젝트 병합...
작업대
모두
기본 단축키
없음
도입 버전
-
참조
없음

설명

표준 프로젝트 병합(Std MergeProjects) 명령은 FreeCAD 파일의 내용을 활성 문서에 추가합니다.

용법

  1. 메뉴에서 파일 → 프로젝트 병합... 옵션을 선택합니다.
  2. 대화 상자에서 FreeCAD 파일을 선택합니다.
  3. 열기 버튼을 누릅니다.

선택 사항

  • 명령을 중지하려면 Esc 키나 취소 버튼을 누릅니다.

비고

  • 프로젝트는 자신과 병합할 수 없으며 현재 파일을 선택할 수 없습니다.
  • FreeCAD는 이름 충돌을 피하기 위해 환경 설정에 따라 개체의 내부 이름과 레이블을 자동으로 변경합니다.

Scripting

See also: FreeCAD Scripting Basics.

To merge a project use the mergeProject method of the document object.

import FreeCAD

FreeCAD.ActiveDocument.mergeProject("Path_to_FCStd_project_file")