「Bim:set-description」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
編集の要約なし
編集の要約なし
 
38行目: 38行目:
* [[bim:get-description]]
* [[bim:get-description]]
* [[bim:set-description]]
* [[bim:set-description]]
* [[bim:get-roomdescription]]
* [[bim:set-roomdescription]]




[[Category:AutoLISP]]
[[Category:AutoLISP]]
[[Category:BricsCADのLISP]]
[[Category:BricsCADのLISP]]

2023年4月23日 (日) 10:48時点における最新版

構文
(Bim:set-description ename description)


機能
指定された entity に BIM オブジェクト説明文字列を割り当てます。


引数
  • ename : BIM名前プロパティをセットしたいエンティティ(ename or VLAオブジェクト)
  • description :エンティティにセットする説明の文字列 (空文字 "" も可)


戻り値
オブジェクトにBIM説明プロパティがセットできたら T 、それ以外は 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)
"あれじゃわからんだろあれじゃぁ"


関連事項