Std Delete/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
No edit summary
Line 10: Line 10:
}}
}}


{{GuiCommand/ru
<div class="mw-translate-fuzzy">
|Name=Std Delete
{{GuiCommand/ru|Name=Std Delete|Name/ru=Std Delete|Workbenches=All|MenuLocation=[[Std Edit Menu/ru|Правка]] → Удалить}}
|Name/ru=Std Delete
</div>
|MenuLocation=Правка → Удалить
|Workbenches=All
|Shortcut={{KEY|Del}}
}}


==Description==
==Description==

Revision as of 12:30, 14 May 2020

Std Delete

Системное название
Std Delete
Расположение в меню
Правка → Удалить
Верстаки
All
Быстрые клавиши
Del
Представлено в версии
-
См. также
Нет

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")