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