Bim:attributeset-set-visible

提供:GizmoLabs - だいたい CAD LISP なサイト
2024年5月19日 (日) 06:35時点におけるGizmon (トーク | 投稿記録)による版 (ページの作成:「{{BCAD_LISP_BIM}} ; 構文 : (Bim:attributeset-set-visible ''asetName'' ''visibility'') ; 機能 : asetNameで指定された 属性セット名の可視性ステータスをセットする。 ; 引数 * asetName : 属性セット名を取得するための属性セット名。 * visibility : 可視性ステータスの値。T=表示、nil=非表示 ; 戻り値 : 割り当て成功なら T、それ以外は nil を返す。 MEMO * 属性セット名は大…」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
構文
(Bim:attributeset-set-visible asetName visibility)


機能
asetNameで指定された 属性セット名の可視性ステータスをセットする。


引数
  • asetName : 属性セット名を取得するための属性セット名。
  • visibility : 可視性ステータスの値。T=表示、nil=非表示


戻り値
割り当て成功なら T、それ以外は nil を返す。


MEMO

  • 属性セット名は大文字と小文字を区別しない。


サンプル
(vl-load-bim)
(bim:create-attributeset "---testName---" "---testLabel---" T)
T
(bim:attributeset-create-property  "---testName---"  "TestProp" "---label---" nil T)
T
(Bim:attributeset-set-visibility "---testName---" T)
T
(Bim:attributeset-get-visibility "---testName---")
T
(Bim:attributeset-set-visibility "---testName---" nil)
T
(Bim:attributeset-get-visibility "---testName---")
nil

関連事項