Bim:attributeset-get-property-name
BricsCAD LISP BIM関数 Home - BricsCAD LISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
 - (Bim:attributeset-get-property-name asetName propLabel)
 
- 機能
 - propLabel ラベルで指定されたプロパティの名前を、asetName 属性セットで検索して返す。
 
- 引数
 
- asetName : プロパティを取得する属性セット名の文字列。
 - propLabel : 取得するプロパティのラベル文字列
 
- 戻り値
 - プロパティがあればプロパティ名の文字列、それ以外は 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 (bim:attributeset-get-property-name "---testName---" "newProp" ) "newProp"
関連事項