Bim:get-description

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(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)
"あれじゃわからんだろあれじゃぁ"


関連事項