Bim:attributeset-get-property-description

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Bim:attributeset-get-property-description 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-description "---testName---" "TestProp"  "Test description")
T
(bim:attributeset-get-property-description "---testName---"  "TestProp" )
"Test description"

関連事項