When you call [NSPrintOperation runOperation]
, the printing system runs the print options panel, and when the user clicks OK, the printing occurs.
Is there a way to modify some of the user's chosen settings (in the NSPrintInfo
object) after the panel has run, but before the actual printing occurs? I want to override a few of the settings.
I know you can suppress the panel altogether, but I'm interested in a way to "intercept" the print settings instead.