「Bim:set-description」の版間の差分
(ページの作成:「{{BCAD_LISP_BIM}} ; 構文 : (Bim:set-description ''ename'' ''description'') ; 機能 : 指定された entity に BIM オブジェクト説明文字列を割り当て…」) |
編集の要約なし |
||
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 |
2023年3月14日 (火) 04:05時点における版
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) "あれじゃわからんだろあれじゃぁ"
関連事項