Bim:attributeset-bimtypes-list

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Bim:attributeset-bimtypes-list-all asetName)


機能
属性セット asetName で使用されるすべての BIM Type 名(グローバルなローカライズされていない名前文字列)のリストを返す。


引数
  • asetName :使用する BIM タイプを取得する 属性セット名の文字列。


戻り値
BIMタイプ文字列のリスト、または nil


Memo

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


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

(bim:attributeset-bimtypes-list "新館")
("BimDbWindow")

関連事項