Std Delete/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/pl |Zaznacz wszystko |Wyślij do konsoli Python |Menu Edycja |IconL=Std_SelectAll.svg |IconR=...")
(Created page with "{{GuiCommand/pl |Name=Std Delete |Name/pl=Std: Usuń |MenuLocation=Edycja → Usuń |Workbenches=wszystkie |Shortcut={{KEY|Del}} }}")
Line 10: Line 10:
}}
}}


{{GuiCommand
{{GuiCommand/pl
|Name=Std Delete
|Name=Std Delete
|Name/pl=Std: Usuń
|MenuLocation=EditDelete
|MenuLocation=EdycjaUsuń
|Workbenches=All
|Workbenches=wszystkie
|Shortcut={{KEY|Del}}
|Shortcut={{KEY|Del}}
}}
}}

Revision as of 18:02, 16 May 2022

Std: Usuń

Lokalizacja w menu
Edycja → Usuń
Środowisko pracy
wszystkie
Domyślny skrót
Del
Wprowadzono w wersji
-
Zobacz także
brak

Description

The Std Delete command deletes selected objects.

Usage

  1. Select one or more objects.
  2. There are several ways to invoke the command:
    • Select the Edit → Delete option from the menu.
    • Select the Delete option from the Tree view context menu or 3D view context menu.
    • Use the keyboard shortcut: Del.

Scripting

See also: FreeCAD Scripting Basics.

To delete an object use the removeObject method of the document object.

import FreeCAD

FreeCAD.ActiveDocument.removeObject("myObjectName")