「Bim:attributeset-set-name」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{BCAD_LISP_BIM}} ; 構文 : (Bim:attributeset-get-name ''asetName'' ''newName'') ; 機能 : 属性セット名 asetName に新しい属性セット名 newName を割り当てる。 ; 引数 * asetName : 属性セット名を取得するための属性セット名。 * asetName : 新しい属性セット名。 ; 戻り値 : 割当成功なら T、それ以外は nil MEMO * AttributeSet ラベルは大文字と小文字を区別しない。 ; サンプ…」)
(相違点なし)

2024年5月19日 (日) 06:30時点における版

構文
(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

関連事項