Std Save/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "==Script==")
(Created page with "{{Emphasis|Voir aussi:}} FreeCAD Script de base.")
Line 40: Line 40:
==Script==
==Script==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|Voir aussi:}} [[FreeCAD_Scripting_Basics/fr|FreeCAD Script de base]].


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 10:04, 15 April 2020

Std Enregistrer

Emplacement du menu
Fichier → Enregistrer
Ateliers
Tous
Raccourci par défaut
Ctrl+S
Introduit dans la version
-
Voir aussi
Std Enregistrer sous..., Std Enregistrer une copie, Std Tout enregistrer

Description

La commande Std Enregistrer enregistre le document actif.

Utilisation

  1. Il existe plusieurs façons d'appeler la commande:
    • Appuyez sur le bouton Std Enregistrer.
    • Sélectionnez l'option File → Enregistrer dans le menu.
    • Utilisez le raccourci clavier: Ctrl+S.
  2. Pour les nouveaux documents: saisissez un nom de fichier dans la boîte de dialogue et appuyez sur le bouton Enregistrer.

Options

  • Appuyez sur Echap ou sur le bouton Annuler pour annuler la commande.

Préférences

  • Le dernier emplacement de fichier utilisé est stocké: Outils → Editer les paramètres... → BaseApp → Preferences → General → FileOpenSavePath.

Script

Voir aussi: FreeCAD Script de base.

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.