Bim:attributeset-bimtypes-del

提供:GizmoLabs - だいたい CAD LISP なサイト
2024年5月13日 (月) 07:43時点におけるGizmon (トーク | 投稿記録)による版 (ページの作成:「{{BCAD_LISP_BIM}} ; 構文 : (bim:attributeset-bimtypes-del ''asetName'' ''bimType'') ; 機能 : 属性セット asetName から BIMタイプ bimType (グローバルなローカライズされていない名前文字列)を削除する。 ; 引数 * asetName : BIM タイプを削除したい属性セット名の文字列。 * bimType : BIM Type のグローバル名の文字列。 ; 戻り値 : 削除できた T、それ以外は nil Memo * 属…」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
構文
(bim:attributeset-bimtypes-del asetName bimType)


機能
属性セット asetName から BIMタイプ bimType (グローバルなローカライズされていない名前文字列)を削除する。


引数
  • asetName : BIM タイプを削除したい属性セット名の文字列。
  • bimType : BIM Type のグローバル名の文字列。


戻り値
削除できた T、それ以外は nil


Memo

  • 属性セット名は大文字と小文字を区別しない。
  • BIMタイプ文字列は大文字と小文字を区別する。


サンプル
(vl-load-bim)
(bim:create-attributeset "新館")
(bim:attributeset-bimtypes-has "新館" "BimDbWindow")
nil
(bim:attributeset-bimtypes-add  "新館" "BimDbWindow")
T
(bim:attributeset-bimtypes-has "新館" "BimDbWindow")
T

(bim:attributeset-bimtypes-del  "新館" "BimDbWindow")
T
(bim:attributeset-bimtypes-has "新館" "BimDbWindow")
nil

関連事項