Bim:attributeset-bimtypes-has
BricsCAD LISP BIM関数 Home - BricsCAD LISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (bim:attributeset-bimtypes-has 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-has "新館" "BimDbDoor") nil
関連事項