Is it possible to print a doc file using cocoa application? If possible please give some suggestions. I printed pdf and开发者_高级运维 image files.. But i didn't get any solution for doc files.
Thanks in advance, Ramesh.P
The Word Document format is understood by NSAttributedString. It's displayed by NSTextView. The question you're really asking is "how do I print the contents of an attributed string," which reduces to "how do I print the contents of an NSTextView" at its simplest.
Even if you're not displaying the text view to the user, you'll still need an off-screen one with the desired settings to print it easily.
精彩评论