Hi I tried printing as aspose document using the code below
Aspose.Words.Document doc = new Aspose.Words.Document(documentstream);
MemoryStream pdfstream = new MemoryStream();
{
doc.Save(pdfstream, Aspose.Words.SaveFormat.Pdf);
pdfstream.Position = 0;
PdfViewer viewer = new PdfViewer();
//Open input PDF file
viewer.BindPdf(pdfstream);
//Print PDF document
viewer.PrintDocument();
//Close PDF file
viewer.Close();
// Docuware.pdfstream = pdfstream;
}
I think it takes the printer in the server ? What needs to be changed to send the document to the client printer?