Home > PCB_PrimitiveFill > get
PCB_PrimitiveFill.get() 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.
Get the fill
Signature
typescript
function get(primitiveIds: string): Promise<IPCB_PrimitiveFill | undefined>;1
Parameters
Parameter | Type | Description |
|---|---|---|
primitiveIds | string | Primitive ID of the fill, which can be a string or an array of strings. If it is an array, an array is also returned |
Returns
Promise<IPCB_PrimitiveFill | undefined>
Fill primitive object, undefined indicates that the retrieval failed
Example
javascript
// 1. 创建两个测试填充(随机坐标避免重合)
const x = 2000 + Math.floor(Math.random() * 100000);
const y = 2000 + Math.floor(Math.random() * 100000);
const fill1 = await eda.pcb_PrimitiveFill.create(
1,
eda.pcb_MathPolygon.createPolygon(['R', x, y, 500, 300, 0, 0]),
'',
0,
10,
false
);
const fill2 = await eda.pcb_PrimitiveFill.create(
2,
eda.pcb_MathPolygon.createPolygon(['R', x, y + 1000, 500, 300, 0, 0]),
'',
0,
10,
false
);
// 2. 传单个 ID 字符串,返回单个填充对象
const single = await eda.pcb_PrimitiveFill.get(fill1.getState_PrimitiveId());
// 3. 传 ID 数组,返回填充对象数组
const arr = await eda.pcb_PrimitiveFill.get([
fill1.getState_PrimitiveId(),
fill2.getState_PrimitiveId()
]);
// 4. 清理测试图元(查询类需要清理)
await eda.pcb_PrimitiveFill.delete([
fill1.getState_PrimitiveId(),
fill2.getState_PrimitiveId()
]);
console.log('single layer:', single.getState_Layer());
console.log('single fillMode:', single.getState_FillMode());
console.log('array length:', arr.length);
console.log('fill2 layer:', arr[1].getState_Layer());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
27
28
29
30
31
32
33
34
35
36
37
38
39
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
27
28
29
30
31
32
33
34
35
36
37
38
39