T Tull Clancey Apr 19, 2006 #1 Does anyone have a solution for printing rotated text? I can't rely on changing the printer orientation. Thanks, Tull.
Does anyone have a solution for printing rotated text? I can't rely on changing the printer orientation. Thanks, Tull.
H Herfried K. Wagner [MVP] Apr 19, 2006 #2 Tull Clancey said: Does anyone have a solution for printing rotated text? I can't rely on changing the printer orientation. Click to expand... Check out 'e.Graphics.RotateTransform'.
Tull Clancey said: Does anyone have a solution for printing rotated text? I can't rely on changing the printer orientation. Click to expand... Check out 'e.Graphics.RotateTransform'.
H Herfried K. Wagner [MVP] Apr 19, 2006 #4 Tull Clancey said: You're probably right, can you please ellaborate? Click to expand... Inside the 'PrintDocument' object's 'PrintPage' event handler: \\\ With e.Graphics .TranslateTransform(...) .RotateTransform(90) .DrawString("Hello World!", Me.Font, Brushes.Blue, 0, 0) End With ///
Tull Clancey said: You're probably right, can you please ellaborate? Click to expand... Inside the 'PrintDocument' object's 'PrintPage' event handler: \\\ With e.Graphics .TranslateTransform(...) .RotateTransform(90) .DrawString("Hello World!", Me.Font, Brushes.Blue, 0, 0) End With ///
G Guest Apr 20, 2006 #5 Check out the FormatFlags property of the StringFormat Class which can be used with DrawString. -- Dennis in Houston Tull Clancey said: You're probably right, can you please ellaborate? Thanks, Tull. Click to expand...
Check out the FormatFlags property of the StringFormat Class which can be used with DrawString. -- Dennis in Houston Tull Clancey said: You're probably right, can you please ellaborate? Thanks, Tull. Click to expand...