Std Refresh/de: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 44: Line 44:


* For a macro that will recompute the active document see: [[Macro_ForceRecompute|Macro ForceRecompute]].
* For a macro that will recompute the active document see: [[Macro_ForceRecompute|Macro ForceRecompute]].

==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.


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">

Revision as of 14:27, 2 December 2020

Std Refresh

Menu location
Bearbeiten → Aktualisieren
Workbenches
All
Default shortcut
F5 or Ctrl+R
Introduced in version
-
See also
None

Beschreibung

Wenn verwendet, berechnet dieser Befehl alle geänderten Komponenten auf dem Bildschirm neu und aktualisiert die Anzeige .

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

Anwendung

Drücke F5 oder Ctrl+R oder klicke auf das Symbol Refresh.

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

Skripten

Die Neuberechnung des Modells kann in der Makros und von der Python Konsole aus mit Hilfe der recompute Methode des aktuell aktiven Dokuments durchgeführt werden.

import FreeCAD

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