Auto print

Does Aspose.words support printing without user intervention?

Hi
Thank you for your interest in Aspose.Words. The Aspose.Words.Viewer namespace provides classes to render and print Word documents without utilizing Microsoft Word. You can print document using the following code.

Document doc = new Document(@"Test042\in.doc");
DocumentRenderer renderer = new DocumentRenderer(doc);
renderer.Print();

But note that Aspose.Words.Viewer namespace is currently in beta. See the following link for more information.
https://docs.aspose.com/words/net/rendering/
Best regards.

We are happy to tell you that the new Rendering Engine has replaced the “old Viewer Beta”. The Rendering Engine can print, save as images or draw onto .NET Graphics object any document page.

Please see Aspose.Words documentation to learn more about new features.

Saving to image

In additional, new Rendering engine allows you to convert Word document to PDF directly (without using Aspose.Pdf).

Saving to Pdf

The latest version of Aspose.Words is available for download from downloads section or from NuGet