Bim:attributeset-get-property-visible

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Bim:attributeset-get-property-visible asetName propVisible)


機能
属性セットの中で propName プロパティを検索して、propName プロパティの可視性ステータスを返す。


引数
  • asetName : プロパティを取得する属性セット名の文字列。
  • propVisible : 可視性を取得するプロパティ名の文字列。


戻り値
取得された可視性値。表示なら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-visible "---testName---"  "TestProp" T)
T
(bim:attributeset-get-property-visible "---testName---"  "TestProp" )
T
(bim:attributeset-set-property-visible "---testName---"  "TestProp" nil)
T
(bim:attributeset-get-property-visible "---testName---"  "TestProp" )
nil

関連事項