「Bim:attributeset-set-property-name」の版間の差分
(ページの作成:「{{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- | (bim:create-attributeset "---testName---" "---testLabel---" T) | ||
T | T | ||
(bim:attributeset-create-property "---testName---" "TestProp" "---label---" nil T) | |||
(bim:attributeset-set-property-name | T | ||
(bim:attributeset-set-property-name "---testName---" "TestProp" "newProp" ) | |||
T | T | ||
2024年5月18日 (土) 07:27時点における最新版
BricsCAD LISP BIM関数 Home - BricsCAD LISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (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
関連事項