「Bim:set-description」の版間の差分
(ページの作成:「{{BCAD_LISP_BIM}} ; 構文 : (Bim:set-description ''ename'' ''description'') ; 機能 : 指定された entity に BIM オブジェクト説明文字列を割り当て…」) |
編集の要約なし |
||
(同じ利用者による、間の1版が非表示) | |||
22行目: | 22行目: | ||
(vl-load-bim) | (vl-load-bim) | ||
(setq ent (car (entsel))) | (setq ent (car (entsel))) | ||
(bim:set-description ent "あれ") | (bim:set-description ent "あれ") | ||
T | T | ||
41行目: | 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時点における最新版
BricsCAD LISP BIM関数 Home - BricsCAD LISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (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) "あれじゃわからんだろあれじゃぁ"
関連事項