+ dc.DrawRotatedText( "That is text", 60, 30, -45 );
+
+ dc.SetFont( *wxNORMAL_FONT );
+
+ wxString text;
+ dc. SetBackgroundMode(wxTRANSPARENT);
+
+ for ( int n = -180; n < 180; n += 30 )
+ {
+ text.Printf(" %d rotated text", n);
+ dc.DrawRotatedText(text , 400, 400, n);
+ }