Home > SYS_Environment > isJLCEDAProEdition
SYS_Environment.isJLCEDAProEdition() method
Whether it is the EasyEDA Pro edition
Signature
typescript
function isJLCEDAProEdition(): boolean;1
Returns
boolean
Whether it is the EasyEDA Pro edition
Example
javascript
// 1. 判断是否为嘉立创 EDA 专业版(同步返回布尔值)
const isJLCEDAPro = eda.sys_Environment.isJLCEDAProEdition();
// 2. 输出判断结果(嘉立创 EDA 专业版为 true)
console.log('是否嘉立创 EDA 专业版:', isJLCEDAPro);1
2
3
4
5
2
3
4
5