标签: node.js printing desktop-application electron
我在渲染过程中使用以下代码并且工作正常。
function printDocument() { window.print(); }
但是我想直接打印到特定的打印机上进行编程设置。我还想手动设置纸张尺寸。
我还想要系统中可用打印机的列表。
我可以使用电子或节点中的任何打印API吗?
我想在c#
提前谢谢你。