Bim:set-roomunassignedlocation

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


機能
roomEntityで指定されたBIMルームを任意の空間位置(建物または階)から削除(または割り当て解除)する。


引数


戻り値
割り当て解除できたら T、それ以外なら nil。


memo.

  • (bim::create-room) および (bim::create-associativeroom) も参照。
  • BricsCAD V21以降は、"Spaces" オブジェクトでも動作する。
  • 建物名は大文字と小文字を区別する!


サンプル
(vl-load-bim)
(setq roomEnt1 (car (bim:get-allspaces)) )
(bim:set-roomassignedbuilding roomEnt1 "高級ホテル新館")
T
(bim:get-roomassignedbuilding roomEnt1)
"高級ホテル新館"
(bim:set-roomassignedstory roomEnt1 "高級ホテル新館" "24階")
T
(bim:get-roomassignedstory roomEnt1)
"24階"
(bim:set-roomdepartment roomEnt1 "スイート・ルーム")
T
(bim:get-roomdepartment roomEnt1)
"スイート・ルーム"

(bim:get-roomunassignedlocation roomEnt1)
T
(bim:get-roomassignedbuilding roomEnt1)
""

関連事項