Mech:compdef-has-definition
BricsCAD Mechanical関数 Home - BricsCADのLISP - AutoLISP Home - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Mech:compdef-has-definition blkRefOrSolid )
- 機能
- 指定されたblkRefOrSolid(ename)エンティティが「Mechanical」定義データComponentDefinitionを参照(使用)しているか否かを返す。
- 引数
-
- blkRefOrSolid : エンティティ名(BlockReference または 3dSolid)
- 戻り値
- 指定されたエンティティがComponentDefinitionを使用している場合は T、それ以外は nil
- サンプル
(vl-load-mech) 1 (setq blkRefOrSolid (entlast)) <Entity name: 7dabeda0> (setq res (mech:compdef-has-definition blkRefOrSolid)) T (setq res (mech:compdef-unmech blkRefOrSolid)) T (setq res (mech:compdef-has-definition blkRefOrSolid)) nil
関連事項