Bim:get-description
BricsCAD LISP BIM関数 Home - BricsCAD LISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Bim:get-description ename)
- 機能
- 指定された entity の BIM 説明プロパティ文字列を返す。
- 引数
-
- ename : BIM 説明プロパティをセットしたいエンティティ(ename or VLAオブジェクト)
- 戻り値
- オブジェクトのBIM説明プロパティ文字列、なければ nil。
- サンプル
(vl-load-bim) (setq ent (car (entsel))) (bim:set-description ent "あれ") T (bim:get-description ent) "あれ" (bim:set-description ent "あれじゃわからんだろあれじゃぁ") T (bim:get-description ent) "あれじゃわからんだろあれじゃぁ"
関連事項