Bim:attributeset-set-property-label
BricsCAD LISP BIM関数 Home - BricsCAD LISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Bim:attributeset-set-property-name asetName propName newLabel )
- 機能
- この関数は、propName 名で指定された Property に対して、asetName 属性セット内を検索して新しい名前 newLabel を割り当てる。
- 引数
- asetName : プロパティを取得する属性セット名の文字列。
- propName : 変更するプロパティの名の文字列
- newLabel : 新たにセットするラベル名の文字列
- 戻り値
- 割当成功なら 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-label "---testName---" "TestProp" "newLabel" ) T
関連事項