Ramesh Pauldurai
Ramesh Pauldurai

Reputation: 123

Printing doc file using cocoa

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

Upvotes: 1

Views: 252

Answers (1)

Joshua Nozzi
Joshua Nozzi

Reputation: 61228

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.

Upvotes: 3

Related Questions