Bim:attributeset-get-name

提供:GizmoLabs - だいたい CAD LISP なサイト
2024年5月18日 (土) 19:14時点におけるGizmon (トーク | 投稿記録)による版 (ページの作成:「{{BCAD_LISP_BIM}} ; 構文 : (Bim:attributeset-get-name ''asetLabel'' ) ; 機能 : asetLabel ラベルで指定された 属性セット名を返す。 ; 引数 * asetLabel : 属性セット名を取得するための属性セットのラベル。 ; 戻り値 : 属性セット名の文字列。エラーの場合は nil を返す。 MEMO * AttributeSet ラベルは大文字と小文字を区別しない。 ; サンプル <pre class="brush: autolisp;"> (v…」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
構文
(Bim:attributeset-get-name asetLabel )


機能
asetLabel ラベルで指定された 属性セット名を返す。


引数
  • asetLabel : 属性セット名を取得するための属性セットのラベル。


戻り値
属性セット名の文字列。エラーの場合は 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---"


関連事項