Std Save/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
 
(32 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<languages/>
<languages/>

{{Docnav/ru
|[[Std_CloseAllWindows/ru|Команда "Закрыть всё"]]
|[[Std_SaveAs/ru|Команда "Сохранить как..."]]
|[[Std_File_Menu/ru|Меню "Файл"]]
|IconL=Std_CloseAllWindows.svg
|IconR=Std_SaveAs.svg
|IconC=Freecad.svg
}}

<div class="mw-translate-fuzzy">
{{GuiCommand/ru
{{GuiCommand/ru
|Name=Std Save
|Name=Std Save
Line 5: Line 16:
|MenuLocation=[[Std_File_Menu/ru|Файл]] → Сохранить
|MenuLocation=[[Std_File_Menu/ru|Файл]] → Сохранить
|Workbenches=All
|Workbenches=All
|Shortcut=Crtl+S
|Shortcut={{KEY|Ctrl}}+{{KEY|S}}
|SeeAlso=[[Std_SaveAs/ru|Сохранить как...]]
|SeeAlso=[[Std_SaveAs/ru|Сохранить как...]], [[Std_SaveCopy/ru|Std SaveCopy]], [[Std_SaveAll/ru|Std SaveAll]]
}}
}}
</div>


<span id="Description"></span>
The {{KEY|Save}} command stores the active document of the current project to a file. If there are other documents in the project, they are not saved.
==Описание==


Команда '''Сохранить''' сохраняет активный документ.
The first time a document is saved, a dialog to define the path and file name will appear.


<span id="Usage"></span>
==Применение==


# There are several ways to invoke the command:
[[Image:FileSaveAs.png|left]]
#* Press the {{Button|[[Image:Std_Save.svg|16px]] [[Std_Save|Save]]}} button.
{{clear}}
#* Select the {{MenuCommand|File → [[Image:Std_Save.svg|16px]] Save}} option from the menu.
#* Use the keyboard shortcut: {{KEY|Ctrl}}+{{KEY|S}}.
# For new documents: enter a filename in the dialog box and press the {{Button|Save}} button.


<span id="Options"></span>
==Опции==


* Для новых документов: нажмите {{KEY|Esc}} или кнопку {{Button|Отмена}}, чтобы прервать выполнение команды.
The name assigned to the document to save it also becomes the name used for the root in the document tree structure.


<span id="Notes"></span>
Subsequent {{KEY|Save}} commands automatically use the path and file name defined in the first save. To save the file in a
==Примечания==
different location, or assign to it a new name, you must use the Save As command.


* This command can also be used to save dependency graphs. See [[Std_DependencyGraph|Std DependencyGraph]].
When you try to close a modified document, or exit FreeCAD with modified documents in use, you will receive a warning:


<span id="Scripting"></span>
[[Image:UnsavedDocument.png|left]]
==Программирование==
{{clear}}


{{Emphasis|Смотрите так же:}} [[FreeCAD_Scripting_Basics/ru|Основы составления скриптов в FreeCAD]].


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]].
You can define a default location for opening and saving files using the menu Tools → Edit Parameters → BaseApp → Preferences → General → FileOpenSavePath.


[[Image:FileOpenSavePath.png|left]]


{{Docnav/ru
[[Category:Documentation/ru]]
|[[Std_CloseAllWindows/ru|Команда "Закрыть всё"]]
[[Category:Command_Reference/ru]]
|[[Std_SaveAs/ru|Команда "Сохранить как..."]]
{{clear}}
|[[Std_File_Menu/ru|Меню "Файл"]]
|IconL=Std_CloseAllWindows.svg
|IconR=Std_SaveAs.svg
|IconC=Freecad.svg
}}

{{Std_Base_navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}

Latest revision as of 11:51, 21 April 2024

Std Save

Системное название
Std Save
Расположение в меню
Файл → Сохранить
Верстаки
All
Быстрые клавиши
Ctrl+S
Представлено в версии
-
См. также
Сохранить как..., Std SaveCopy, Std SaveAll

Описание

Команда Сохранить сохраняет активный документ.

Применение

  1. There are several ways to invoke the command:
    • Press the Save button.
    • Select the File → Save option from the menu.
    • Use the keyboard shortcut: Ctrl+S.
  2. For new documents: enter a filename in the dialog box and press the Save button.

Опции

  • Для новых документов: нажмите Esc или кнопку Отмена, чтобы прервать выполнение команды.

Примечания

Программирование

Смотрите так же: Основы составления скриптов в FreeCAD.

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.