Home > ISCH_PrimitiveAttribute > done
ISCH_PrimitiveAttribute.done() method
此 API 当前处于 BETA 预览状态,希望得到开发者的反馈。它的任何功能都可能在接下来的开发进程中被修改,请不要将它用于任何正式环境。
将对图元的更改应用到画布
签名
typescript
function done(): Promise<ISCH_PrimitiveAttribute>;1
返回值
Promise<ISCH_PrimitiveAttribute>
属性图元对象
示例
javascript
// 1. 生成本次运行专用的坐标,避免与之前保留的测试器件重合
const x = 2000 + Math.floor(Math.random() * 6000);
const y = 2000 + Math.floor(Math.random() * 6000);
// 2. 放置测试器件并取出 Designator(编号)属性
const devices = await eda.lib_Device.search('C0402');
const comp = await eda.sch_PrimitiveComponent.create(devices[0], x, y);
const attrIds = await eda.sch_PrimitiveAttribute.getAllPrimitiveId(comp.getState_PrimitiveId());
const attrs = await eda.sch_PrimitiveAttribute.get(attrIds);
const designator = attrs.find(a => a.getState_Key() === 'Designator');
// 3. 记录修改前的字号和旋转角度
const fontSizeBefore = designator.getState_FontSize();
const rotationBefore = designator.getState_Rotation();
// 4. 批量修改两个属性,一次 done() 提交
const asyncAttr = designator.toAsync();
asyncAttr.setState_FontSize(50);
asyncAttr.setState_Rotation(90);
await asyncAttr.done();
// 5. 从画布重新读取,确认修改已生效(保留现场供观察)
const refetched = await eda.sch_PrimitiveAttribute.get(designator.getState_PrimitiveId());
console.log('fontSize:', fontSizeBefore, '→', refetched.getState_FontSize());
console.log('rotation:', rotationBefore, '→', refetched.getState_Rotation());1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26