Bim:get-roomassignedstory

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


機能
roomEntity で指定されたBIMルームが割り当てられているストーリー名を返す。


引数


戻り値
roomEntityに割り当てられているストーリー名。設定されていないければ空文字。


memo.

  • (bim::create-room) および (bim::create-associativeroom) も参照。
  • BricsCAD V21以降は、"Spaces" オブジェクトでも動作する。


サンプル
(vl-load-bim)
(setq roomEnt1 (car (bim:get-allspaces)) )
(bim:set-roomdepartment roomEnt1 "旧館")
T
(bim:get-roomdepartment roomEnt1)
"旧館"
(bim:set-roomassignedstory roomEnt1 "一階")
T
(bim:get-roomassignedstory roomEnt1)
"一階"

関連事項