Std Delete/ko: Difference between revisions

From FreeCAD Documentation
(Created page with "==스크립트==")
(Created page with "{{Emphasis|참조:}} FreeCAD 스크립트 기초.")
Line 32: Line 32:
==스크립트==
==스크립트==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|참조:}} [[FreeCAD_Scripting_Basics/ko|FreeCAD 스크립트 기초]].


To delete an object use the {{incode|removeObject}} method of the document object.
To delete an object use the {{incode|removeObject}} method of the document object.

Revision as of 00:50, 31 December 2020

표준 삭제

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

설명

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

용법

  1. 하나 이상의 개체를 선택합니다..
  2. 이 명령을 실행하는 방법은 여러 가지입니다:
    • 메뉴에서 편집 → 삭제 옵션을 선택합니다.
    • 트리 보기의 상황에 맞는 메뉴 혹은 3D 보기의 상황에 맞는 메뉴에서 삭제 옵션을 선택합니다.
    • 단축키를 사용합니다: Del.

스크립트

참조: FreeCAD 스크립트 기초.

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

import FreeCAD

FreeCAD.ActiveDocument.removeObject("myObjectName")