Bim:get-roomdescription

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


機能
roomEntity で指定されたBIMスペースの説明を取得する。


引数


戻り値
BIMスペースの説明テキスト。設定されてない場合空文字が返る。


サンプル
(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"

関連事項