「Bim:attributeset-get-property-visible」の版間の差分
(ページの作成:「{{BCAD_LISP_BIM}} ; 構文 : (Bim:attributeset-get-property-visible ''asetName'' ''propVisible'') ; 機能 : 属性セットの中で propName プロパティを検索して、propName プロパティの可視性ステータスを返す。 ; 引数 * asetName : プロパティを取得する属性セット名の文字列。 * propVisible : 可視性を取得するプロパティ名の文字列。 ; 戻り値 : 取得された可視性値。表示ならT…」) |
(相違点なし)
|
2024年5月18日 (土) 15:58時点における最新版
BricsCAD LISP BIM関数 Home - BricsCAD LISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (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
関連事項