Std CloseActiveWindow/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "==Opis==")
(Created page with "Polecenie '''Zamknij aktywne okno''' zamyka aktywne okno. Aby zamknąć dokument, wszystkie jego okna muszą być zamknięte.")
Line 20: Line 20:
==Opis==
==Opis==


Polecenie '''Zamknij aktywne okno''' zamyka aktywne okno. Aby zamknąć dokument, wszystkie jego okna muszą być zamknięte.
The '''Std CloseActiveWindow''' command closes the active window. To close a document all its windows must be closed.


==Usage==
==Usage==

Revision as of 17:27, 4 May 2022

Std: Zamknij aktywne okno

Lokalizacja w menu
Plik → Zamknij
Środowisko pracy
wszystkie
Domyślny skrót
Ctrl+F4
Wprowadzono w wersji
-
Zobacz także
Zamknij wszystkie okna

Opis

Polecenie Zamknij aktywne okno zamyka aktywne okno. Aby zamknąć dokument, wszystkie jego okna muszą być zamknięte.

Usage

  1. There are several ways to invoke the command:
    • Select the File → Close option from the menu.
    • Use the keyboard shortcut: Ctrl+F4.
  2. To close a document: repeat this for all windows belonging to it.
  3. When closing the last window of a document that has not been saved, a dialog box will prompt you to save it:
    • Press the Save button to save the document. If required enter a filename first.
    • Press the Discard button to discard the document and lose all changes.

Options

  • When the dialog box is displayed: press Esc or the Cancel button to abort the command.

Notes

  • The command can only close docked windows.
  • A document can also be closed by right-clicking it in the Tree view and selecting Close document from the context menu.

Preferences

  • The last used file location is stored: Tools → Edit parameters... → BaseApp → Preferences → General → FileOpenSavePath.

Scripting

See also: FreeCAD Scripting Basics.

To close a document use the closeDocument method of the FreeCAD application. For a scripting example see Std New.