Bim:attributeset-set-property-visible

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


機能
この関数は、propName 名で指定された Property に対して、asetName 属性セット内を検索して新しい名前 newVisible を割り当てる。


引数
  • asetName : プロパティを取得する属性セット名の文字列。
  • propName : 変更するプロパティの名の文字列
  • newVisible : 新たにセットする可視性のブール値


戻り値
設定成功なら 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-set-property-visible "---testName---"  "TestProp" nil)
T


関連事項