Std Save/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 save a document use the {{incode|save}} method of the document object. A new document must first be saved with the {{incode|saveAs}} method of the document object. For a scripting example see [[Std_New|Std New]].
To save a document use the {{incode|save}} method of the document object. A new document must first be saved with the {{incode|saveAs}} method of the document object. For a scripting example see [[Std_New|Std New]].

Revision as of 05:36, 25 December 2020

표준 저장

메뉴 위치
파일 → 저장
작업대
모두
기본 단축키
Ctrl+S
도입 버전
-
참조
표준 다른 이름으로 저장, 표준 사본 저장, 표준 모두 저장

설명

표준 저장(Std Save) 명령은 활성 문서를 저장합니다.

용법

  1. 이 명령어를 실행하는 방법은 여러가지입니다:
    • 표준 저장 버튼을 누릅니다.
    • 메뉴에서 파일 → 저장 옵션을 선택합니다.
    • 단축키를 사용합니다: Ctrl+S.
  2. 새로 만든 문서라면 대화 상자에서 파일 이름을 입력하고 저장 버튼을 누릅니다.

옵션

  • 새로 만든 문서인 경우 명령을 중지하려면 Esc 키나 취소 버튼을 누르십시오.

비고

  • 이 명령어는 의존성 그래프를 저장하려고 사용할 수도 있습니다. Std DependencyGraph를 참조하십시오.

환경 설정

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

스크립트

참조: FreeCAD Scripting Basics.

To save a document use the save method of the document object. A new document must first be saved with the saveAs method of the document object. For a scripting example see Std New.