표준 삭제(Std Delete)

From FreeCAD Documentation
Revision as of 00:43, 31 December 2020 by Saltsalt (talk | contribs) (Created page with "'''표준 삭제(Std Delete)''' 명령은 선택한 개체를 삭제합니다.")

표준 삭제

메뉴 위치
편집 → 삭제
작업대
모두
기본 단축키
Del
도입 버전
-
참조
없음

설명

표준 삭제(Std Delete) 명령은 선택한 개체를 삭제합니다.

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