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

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{BCAD_LISP_BIM}} ; 構文 : (Bim:attributeset-set-property-name ''asetName'' ''propName'' ''newName'' ) ; 機能 : この関数は、propName 名で指定された Property に対して、asetName 属性セット内を検索して新しい名前 newName を割り当てる。 ; 引数 * asetName : プロパティを取得する属性セット名の文字列。 * propName : 変更するプロパティの名の文字列 * newName : 新たにセットす…」)
 
編集の要約なし
 
28行目: 28行目:
<pre class="brush: autolisp;">
<pre class="brush: autolisp;">
(vl-load-bim)
(vl-load-bim)
(bim:attributeset-create-property  "TestSet"  "TestProp" "---label---" NIL T)
(bim:create-attributeset "---testName---" "---testLabel---" T)
T
T
 
(bim:attributeset-create-property  "---testName---"  "TestProp" "---label---" nil T)
(bim:attributeset-set-property-name ''TestSet'' ''TestProp''  ''newProp'' )
T
(bim:attributeset-set-property-name "---testName---" "TestProp" "newProp" )
T
T



2024年5月18日 (土) 07:27時点における最新版

構文
(Bim:attributeset-set-property-name asetName propName newName )


機能
この関数は、propName 名で指定された Property に対して、asetName 属性セット内を検索して新しい名前 newName を割り当てる。


引数
  • asetName : プロパティを取得する属性セット名の文字列。
  • propName : 変更するプロパティの名の文字列
  • newName : 新たにセットするプロパティ名の文字列


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


MEMO

  • AttributeSet 名は大文字小文字を区別しない。
  • Property名は大文字小文字を区別しない。


サンプル
(vl-load-bim)
(bim:create-attributeset "---testName---" "---testLabel---" T)
T
(bim:attributeset-create-property  "---testName---"  "TestProp" "---label---" nil T)
T
(bim:attributeset-set-property-name "---testName---"  "TestProp" "newProp" )
T


関連事項