Home > SYS_Tool > netlistComparison
SYS_Tool.netlistComparison() method
This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
网表对比
Signature
typescript
netlistComparison(netlist1: string | {
projectUuid: string;
documentUuid: string;
} | File, netlist2: string | {
projectUuid: string;
documentUuid: string;
} | File): Promise<Array<{
type: 'Net' | 'Component';
object: string;
netlist1Name: Array<string>;
netlist2Name: Array<string>;
}>>;1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
Parameters
Parameter | Type | Description |
|---|---|---|
netlist1 | string | { projectUuid: string; documentUuid: string; } | File | 网表 1,可以为:①当前工程内的原理图、PCB 的 UUID;②其它工程的工程 UUID 和原理图、PCB UUID;③原理图、PCB 文件数据 |
netlist2 | string | { projectUuid: string; documentUuid: string; } | File | 网表 2,可以为:①当前工程内的原理图、PCB 的 UUID;②其它工程的工程 UUID 和原理图、PCB UUID;③原理图、PCB 文件数据 |
Returns
Promise<Array<{ type: 'Net' | 'Component'; object: string; netlist1Name: Array<string>; netlist2Name: Array<string>; }>>
网表对比结果