Bim:get-assigned-building

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


機能
指定されたエンティティが割り当てられている建物を取得する。


引数
  • ename : 割り当てるエンティティ(ename or VLAオブジェクト)


戻り値
エンティティに割り当てられている建物名、割り当てられていない場合は NIL


メモ: 文字列名は大文字と小文字を区別する。


サンプル
(bim:set-bimtype ent "Wall")
(setq ent (entlast))
(bim:get-assigned-building ent)
nil
(bim:set-assigned-building ent "Building 1")
T
(bim:get-assigned-building ent)
"Building 1"

関連事項