Printing OpenXml Documents in C#
I have searched for this but cant find anything to help.
I have a WordprocessingDocument - using DocumentFormat.OpenXml.Wordprocessing.
开发者_开发百科Is there a way to print this straight off to a printer, I dont want to save it at all?
Thanks
No, you'll need some sort of program to take the Open XML and translate into how it should be displayed for the printer. In its raw form its just XML and without the translation the printer won't print it how you would expect.
精彩评论