SCH_Drc.check() method
检查 DRC
签名
typescript
check(strict?: boolean, userInterface?: boolean): Promise<boolean>;
1
参数名
参数 | 类型 | 描述 |
---|---|---|
strict | boolean | (Optional) 是否严格检查,严格检查时存在 Warning 将返回 |
userInterface | boolean | (Optional) 是否显示 UI(呼出底部 DRC 窗口) |
返回值
Promise<boolean>
DRC 检查是否无错误
备注
如若检查结果存在 **错误** 或以上级别,将会始终呼出底部 DRC 窗口,无视 userInterface
参数