Home > SCH_PrimitiveComponent > create
SCH_PrimitiveComponent.create() method
此 API 当前处于 BETA 预览状态,希望得到开发者的反馈。它的任何功能都可能在接下来的开发进程中被修改,请不要将它用于任何正式环境。
创建器件
签名
typescript
create(component: {
libraryUuid: string;
uuid: string;
} | ILIB_DeviceItem, x: number, y: number, subPartName?: string, rotation?: number, mirror?: boolean, addIntoBom?: boolean, addIntoPcb?: boolean): Promise<ISCH_PrimitiveComponent | undefined>;
1
2
3
4
2
3
4
参数名
参数 | 类型 | 描述 |
---|---|---|
component | { libraryUuid: string; uuid: string; } | ILIB_DeviceItem | 关联库器件 |
x | number | 坐标 X |
y | number | 坐标 Y |
subPartName | string | (Optional) 子图块名称 |
rotation | number | (Optional) 旋转角度 |
mirror | boolean | (Optional) 是否镜像 |
addIntoBom | boolean | (Optional) 是否加入 BOM |
addIntoPcb | boolean | (Optional) 是否转到 PCB |
返回值
Promise<ISCH_PrimitiveComponent | undefined>
器件图元对象