Home > SCH_PrimitiveComponent > modify
SCH_PrimitiveComponent.modify() method
此 API 当前处于 BETA 预览状态,希望得到开发者的反馈。它的任何功能都可能在接下来的开发进程中被修改,请不要将它用于任何正式环境。
修改器件
签名
typescript
modify(primitiveId: string | ISCH_PrimitiveComponent, property: {
x?: number;
y?: number;
rotation?: number;
mirror?: boolean;
addIntoBom?: boolean;
addIntoPcb?: boolean;
designator?: string | null;
name?: string | null;
uniqueId?: string | null;
manufacturer?: string | null;
manufacturerId?: string | null;
supplier?: string | null;
supplierId?: string | null;
otherProperty?: {
[key: string]: string;
};
}): Promise<ISCH_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 | ISCH_PrimitiveComponent | 图元 ID |
property | { x?: number; y?: number; rotation?: number; mirror?: boolean; addIntoBom?: boolean; addIntoPcb?: boolean; designator?: string | null; name?: string | null; uniqueId?: string | null; manufacturer?: string | null; manufacturerId?: string | null; supplier?: string | null; supplierId?: string | null; otherProperty?: { [key: string]: string; }; } |
返回值
Promise<ISCH_PrimitiveComponent | undefined>
器件图元对象
备注
仅当器件类型为 COMPONENT 时允许使用该方法进行修改