YG
Yavanaarasi G
Syncfusion Team
July 4, 2008 08:54 AM UTC
Hi Daniel,
Essential XlsIO don't have direct support for printing documents.If MS Excel is present on the system, you can launch the process and print the spreadsheet using the below code snippet:
[C#]
//Print an Excel document
System.Diagnostics.Process pr = new System.Diagnostics.Process();
pr.StartInfo.Verb = "Print";
pr.StartInfo.FileName = "Sample.xls";
pr.Start();
Please try this and let me know if this helps.
Regards,
G.Yavana