How to print file document content to a printer

0
Is it possible to print the content of a file document (Word, Excel, PDF, HTML files) to a printer known by the clients computer?
asked
1 answers
0

Since Mendix is web-based, printing documents is like other web applications: 1. Printing to the default printer 2. You can open the printer dialog from the browser. May be a combination of the file url and some javascript in a urlredirector?

var wnd = window.open('http://mysite.com/file/67364');
wnd.print();
answered