Bim:get-roomdescription
BricsCAD LISP BIM関数 Home - BricsCAD LISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Bim:get-roomdescription roomEntity)
- 機能
- roomEntity で指定されたBIMスペースの説明を取得する。
- 引数
-
- roomEntity : 既存のRoomのエンティティ。bim:create-roomと bim:create-associativeroom で返されるもの。
- 戻り値
- 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"
関連事項