Home > PCB_PrimitiveComponent > modify
PCB_PrimitiveComponent.modify() method
此 API 当前处于 BETA 预览状态,希望得到开发者的反馈。它的任何功能都可能在接下来的开发进程中被修改,请不要将它用于任何正式环境。
修改器件
签名
typescript
modify(primitiveId: string | IPCB_PrimitiveComponent, property: {
layer?: TPCB_LayersOfComponent;
x?: number;
y?: number;
rotation?: number;
primitiveLock?: boolean;
attributes?: {
[key: string]: any;
};
addIntoBom?: boolean;
designator?: string | null;
name?: string | null;
uniqueId?: string | null;
manufacturer?: string | null;
manufacturerId?: string | null;
supplier?: string | null;
supplierId?: string | null;
}): Promise<IPCB_PrimitiveComponent | undefined>;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
参数名
参数 | 类型 | 描述 |
---|---|---|
primitiveId | string | IPCB_PrimitiveComponent | 图元 ID |
property | { layer?: TPCB_LayersOfComponent; x?: number; y?: number; rotation?: number; primitiveLock?: boolean; attributes?: { [key: string]: any; }; addIntoBom?: boolean; designator?: string | null; name?: string | null; uniqueId?: string | null; manufacturer?: string | null; manufacturerId?: string | null; supplier?: string | null; supplierId?: string | null; } |
返回值
Promise<IPCB_PrimitiveComponent | undefined>
器件图元对象