Bim:get-bimtype

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Bim:get-bimtype ename )


機能
関連する BuildingElement の要素タイプを文字列で返す。指定されたエンティティが BuildingElement として分類されない場合、NIL を返す。


引数
  • ename : 問い合わせるエンティティ(ename or VLAオブジェクト)


戻り値
関連する BuildingElement を文字列。ename が BuildingElementとして分類されない場合は nil.


サンプル
(bim:set-bimtype ent "Wall")
(setq ent (entlast))
(bim:get-bimtype ent)
"Wall"

関連事項