Home > ISCH_PrimitiveWire > getState_Net
ISCH_PrimitiveWire.getState_Net() method
Get the property state: net name
Signature
typescript
function getState_Net(): string;1
Returns
string
Net name
Example
javascript
// 1. 创建一条属于 SIG_A 网络的测试导线(SCH 坐标单位 10mil)
const wire = await eda.sch_PrimitiveWire.create([1000, 1000, 1400, 1000], 'SIG_A');
// 2. 读取网络名称
const net = wire.getState_Net();
// 3. 清理测试图元(查询类案例不留测试对象)
await eda.sch_PrimitiveWire.delete([wire.getState_PrimitiveId()]);
console.log('net:', net);1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10