Std Rafraîchir

From FreeCAD Documentation
Revision as of 09:46, 15 April 2020 by David69 (talk | contribs)

Std Rafraîchir

Emplacement du menu
Edition → Rafraîchir
Ateliers
Tous
Raccourci par défaut
Ctrl+R
Introduit dans la version
-
Voir aussi
Aucun

Description

The Std Refresh command recomputes the active document. The command is disabled if the document does not require a recompute.

Utilisation

  1. Il existe plusieurs façons d'appeler la commande Actualiser:
    • Appuyer sur le raccourci clavier F5
    • Appuyer sur le raccourci clavier Ctrl+R
    • En appuyant sur le bouton Rafraîchir dans la barre d'outils
    • Utilisation de l'entrée Edition → Rafraîchir dans le menu supérieur

Options

  • To force a recompute select the document or one or more objects in the Tree view, choose the Mark to recompute option from the context menu, and invoke the command.
  • For objects, but not for documents, you can also choose Recompute object from the same context menu (introduced in version 0.19).

Notes

Limitations

  • When using the Spreadsheet Workbench, when updating a spreadsheet it auto-triggers a recompute. The longer this recompute takes the longer the lag will be. One can elect to 'skip recomputes' (by right clicking document name in the tree view) in cases where multiple changes are necessary to be made to the spreadsheet, and then re-enabled afterwards to reduce the number of recomputes required.

Script

Recalculer le modèle peut être fait dans une macros et dans la console Python en utilisant la méthode recompute du document actuellement actif.

import FreeCAD

doc = FreeCAD.newDocument()
doc.recompute()