Bim:set-spacenumber

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Bim:set-spacenumber ename numberString)


機能
指定された BIM「空間」エンティティに、新しい numberString 番号文字列を割り当てる。


引数
  • ename : 番号文字列をセットするエンティティ(通常のエンティティまたはVLAオブジェクト名として)(それがBIM「空間」エンティティである場合)。
  • numberString :エンティティにセットする新しい番号の文字列(数字である必要はなく、任意の文字列とすることができる)


戻り値
文字列、または "Space "エンティティでない場合は nil


memo:

  • 空の文字列が割り当てられた場合、「番号文字列」はBIMデフォルトの文字列にリセットされる。


サンプル
(vl-load-bim)
(setq ent (car (entsel))) 
(bim:set-spacenumber ent "My Space 2")
T
(bim:get-spacenumber ent) 
"My Space 2"

関連事項