Bim:set-roomdescription

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


機能
roomEntity で指定されたBIMルームに対して、新しいルーム説明 "newRoomDesc "を割り当てる。


引数


戻り値
オブジェクトにルーム説明プロパティがセットできたら T 、それ以外は nil。


サンプル
(vl-load-bim)
(setq roomEnt1 (car (bim:get-allspaces)) )
(bim:set-roomdescription roomEnt1 "Room-1a at first floor")
T
(bim:get-roomdescription roomEnt1)
"Room-1a at first floor"

(setq roomEnt2 (cadr (bim:get-allspaces)) )
(bim:set-roomdescription roomEnt2 "Room-2a at second floor")
T
(bim:get-roomdescription roomEnt2)
"Room-2a at second floor"

関連事項