Bim:attributeset-bimtypes-del

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(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

関連事項