Std CloseAllWindows/ko: Difference between revisions

From FreeCAD Documentation
(Created page with "==스크립트==")
(Created page with "{{Emphasis|참조:}} FreeCAD Scripting Basics.")
Line 44: Line 44:
==스크립트==
==스크립트==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|참조:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].


To close a document use the {{incode|closeDocument}} method of the FreeCAD application. For a scripting example see [[Std_New|Std New]].
To close a document use the {{incode|closeDocument}} method of the FreeCAD application. For a scripting example see [[Std_New|Std New]].

Revision as of 02:16, 24 December 2020

표준 모든 창 닫기

메뉴 위치
파일 → 모두 닫기
작업대
모두
기본 단축키
없음
도입 버전
-
참조
표준 닫기

설명

표준 모든 창 닫기(Std CloseAllWindow) 명령은 모든 창을 닫습니다. 그 결과 모든 문서를 닫습니다.

용법

  1. 메뉴에서 파일 → 모두 닫기 옵션을 선택합니다.
  2. 저장하지 않은 문서가 있으면 저장할지 묻는 대화상자가 나타납니다:
    • 활성 문서를 저장하려면 저장 버튼을 누르십시오. 필요하다면 파일 이름을 먼저 입력하십시오.
    • 변경 내용을 모두 무시하고 문서를 닫으려면 무시 버튼을 누르십시오.

옵션

  • 대화 상자에서 명령을 중지하려면 Esc 키나 취소 버튼을 누릅니다.
  • 저장하지 않은 문서가 여러 개일 때 각각의 문서에 대해 저장할지 묻는 대화상자가 나타나지 않게 하려면 모든 문서에 적용 체크 상자를 선택합니다.

비고

  • 트리 보기에서 문서를 오른쪽 클릭하면 나오는 메뉴에서 문서 닫기를 선택하여 해당 문서를 닫을 수도 있습니다.

환경 설정

  • 마지막으로 사용한 파일의 위치가 다음에 저장됩니다: Tools → Edit parameters... → BaseApp → Preferences → General → FileOpenSavePath.

스크립트

참조: FreeCAD Scripting Basics.

To close a document use the closeDocument method of the FreeCAD application. For a scripting example see Std New.