Bim:attributeset-get-visible
BricsCAD LISP BIM関数 Home - BricsCAD LISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Bim:attributeset-get-visible asetName )
- 機能
- asetNameで指定された 属性セット名の可視性ステータスを取得する。
- 引数
- asetName : 属性セット名を取得するための属性セット名。
- 戻り値
- asetNameの可視性ステータス値。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
関連事項