Std Save/ru: Difference between revisions

From FreeCAD Documentation
No edit summary
(Updating to match new version of source page)
 
Line 1: Line 1:
<languages/>
<languages/>

{{Docnav/ru
{{Docnav/ru
|[[Std_CloseAllWindows/ru|Команда "Закрыть всё"]]
|[[Std_CloseAllWindows/ru|Команда "Закрыть всё"]]
Line 20: Line 21:
</div>
</div>


<span id="Description"></span>
==Описание==
==Описание==


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


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


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


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


* Для новых документов: нажмите {{KEY|Esc}} или кнопку {{Button|Отмена}}, чтобы прервать выполнение команды.
* Для новых документов: нажмите {{KEY|Esc}} или кнопку {{Button|Отмена}}, чтобы прервать выполнение команды.


<span id="Notes"></span>
==Примечания==
==Примечания==


* This command can also be used to save dependency graphs. See [[Std_DependencyGraph|Std DependencyGraph]].
* This command can also be used to save dependency graphs. See [[Std_DependencyGraph|Std DependencyGraph]].


<span id="Scripting"></span>
==Настройки==

* Путь к последнему файлу к которому была применена данная команда сохраняется в параметр: {{MenuCommand|Инструменты → Редактор параметров... → BaseApp → Preferences → General → FileOpenSavePath}}.

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


Line 60: Line 62:
}}
}}


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

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.