Is there a flag or argument that would differentiate the purpose in the IPrintable:PrintPage function.
I would like to modify what the print preview looks like as opposed to what is actually being sent to the printer. Our printers prints everything in Landscape, even though the the page orientation is Portrait. (yes its a specialized printer) . So I would like the user to be able to read it on the screen in Horizontal, but when I send it to the printer itself, Id like the text to be Vertical.
For PrintPreview I am using the RadGdiGraphics, and Telerik.WinControls.Primitives.TextParams.
Currently I have it set as
tp.textOrientation = Orientation.Vertical
Which is what needs to be sent to the printer, but for print preview I would like
tp.textOrientation = Orientation.Horizontal
-------
Could this be accomplished using a PrintController. I've see limited documentation on that, and no examples, or explanation of exactly what it does, or allow you to programatically control.
Thanks in advance.