「Bim:attributeset-get-label」の版間の差分
(ページの作成:「{{BCAD_LISP_BIM}} ; 構文 : (Bim:attributeset-get-name ''asetName'' ) ; 機能 : asetNameで指定された 属性セット名を返す。 ; 引数 * asetName : 属性セット名を取得するための属性セット名。 ; 戻り値 : 属性セットのラベル(文字列)、またはエラーの場合は nil を返す。 MEMO * 属性セット名は大文字と小文字を区別しない。 ; サンプル <pre class="brush: autolisp;"> (vl-l…」) |
編集の要約なし |
||
(同じ利用者による、間の1版が非表示) | |||
2行目: | 2行目: | ||
; 構文 | ; 構文 | ||
: (Bim:attributeset-get- | : (Bim:attributeset-get-label ''asetName'' ) | ||
27行目: | 27行目: | ||
T | T | ||
(bim:attributeset-create-property "---testName---" "TestProp" "---label---" nil T) | (bim:attributeset-create-property "---testName---" "TestProp" "---label---" nil T) | ||
T | |||
(Bim:attributeset-set-label "---testName---" "TestProp" ) | |||
T | |||
(Bim:attributeset-get-label "---testName---") | |||
"TestProp" | |||
(Bim:attributeset-set-label "---testName---" "TestProp2" ) | |||
T | T | ||
(Bim:attributeset-get-label "---testName---") | (Bim:attributeset-get-label "---testName---") | ||
" | "TestProp2" | ||
</pre> | </pre> |
2024年5月19日 (日) 06:01時点における最新版
BricsCAD LISP BIM関数 Home - BricsCAD LISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Bim:attributeset-get-label asetName )
- 機能
- asetNameで指定された 属性セット名を返す。
- 引数
- asetName : 属性セット名を取得するための属性セット名。
- 戻り値
- 属性セットのラベル(文字列)、またはエラーの場合は nil を返す。
MEMO
- 属性セット名は大文字と小文字を区別しない。
- サンプル
(vl-load-bim) (bim:create-attributeset "---testName---" "---testLabel---" T) T (bim:attributeset-create-property "---testName---" "TestProp" "---label---" nil T) T (Bim:attributeset-set-label "---testName---" "TestProp" ) T (Bim:attributeset-get-label "---testName---") "TestProp" (Bim:attributeset-set-label "---testName---" "TestProp2" ) T (Bim:attributeset-get-label "---testName---") "TestProp2"
関連事項