Home > SCH_PrimitiveWire > getAll
SCH_PrimitiveWire.getAll() method
此 API 当前处于 BETA 预览状态,希望得到开发者的反馈。它的任何功能都可能在接下来的开发进程中被修改,请不要将它用于任何正式环境。
获取所有导线
签名
typescript
function getAll(net?: string | Array<string>): Promise<Array<ISCH_PrimitiveWire>>;1
参数名
参数 | 类型 | 描述 |
|---|---|---|
net | string | Array<string> | (可选) 网络名称 |
返回值
Promise<Array<ISCH_PrimitiveWire>>
导线图元对象数组
示例
javascript
// 1. 创建两条测试导线,分别属于不同网络(随机坐标避免重合,SCH 坐标单位 10mil)
const x = 2000 + Math.floor(Math.random() * 8000);
const y = 2000 + Math.floor(Math.random() * 8000);
const wire1 = await eda.sch_PrimitiveWire.create([x, y, x + 400, y], 'SIG_A');
const wire2 = await eda.sch_PrimitiveWire.create([x, y + 200, x + 400, y + 200], 'SIG_B');
const wire1Id = wire1.getState_PrimitiveId();
// 2. 不传参数,获取当前原理图页上的全部导线
const all = await eda.sch_PrimitiveWire.getAll();
// 3. 传网络名称,只获取该网络的导线
const onlyA = await eda.sch_PrimitiveWire.getAll('SIG_A');
// 4. 清理测试图元(查询类需要清理)
await eda.sch_PrimitiveWire.delete([wire1.getState_PrimitiveId(), wire2.getState_PrimitiveId()]);
console.log('total wires:', all.length);
console.log('marker wire found:', all.some(w => w.getState_PrimitiveId() === wire1Id));
console.log('SIG_A wires:', onlyA.length);
console.log('SIG_A all same net:', onlyA.every(w => w.getState_Net() === 'SIG_A'));1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20