Bim:get-description

提供:GizmoLabs - だいたい CAD LISP なサイト
2023年3月14日 (火) 04:06時点におけるGizmon (トーク | 投稿記録)による版 (ページの作成:「{{BCAD_LISP_BIM}} ; 構文 : (Bim:get-description ''ename'') ; 機能 : 指定された entity の BIM 説明プロパティ文字列を返す。 ; 引数 :* ename :…」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
構文
(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)
"あれじゃわからんだろあれじゃぁ"


関連事項