Bim:attributeset-set-name

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Bim:attributeset-get-name asetName newName)


機能
属性セット名 asetName に新しい属性セット名 newName を割り当てる。


引数
  • asetName : 属性セット名を割り当てる属性セット名の文字列。
  • asetName : 新しい属性セット名。


戻り値
割当成功なら T、それ以外は nil


MEMO

  • AttributeSet ラベルは大文字と小文字を区別しない。


サンプル
(vl-load-bim)
(bim:create-attributeset "---testName---" "---testLabel---" T)
T
(bim:attributeset-create-property  "---testName---"  "TestProp" "---label---" nil T)
T
(Bim:attributeset-get-name "---testName---")
"---testName---"
(Bim:attributeset-set-name "---testName---" "第一デッキ")
T
(Bim:attributeset-get-name "---testName---")
nil

関連事項