DaveB
DaveB

Reputation: 85

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

Upvotes: 1

Views: 6045

Answers (1)

amurra
amurra

Reputation: 15401

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.

Upvotes: 3

Related Questions