Bim:attributeset-get-property-label
BricsCAD LISP BIM関数 Home - BricsCAD LISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Bim:attributeset-get-property-label asetName propName )
- 機能
- 属性セット asetName の中で propName プロパティを検索して、propName プロパティのラベルを返す。
- 引数
- asetName : プロパティを取得する属性セット名の文字列。
- propName : ラベルを取得するプロパティ名の文字列。
- 戻り値
- プロパティのラベル文字列。エラーの場合には 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" "新ラベル") T (bim:attributeset-get-property-label "---testName---" "TestProp" ) "新ラベル"
関連事項