09-22-2009, 03:57 PM
In http://bcbjournal.org/articles/vol2/980 ... 5aba2d519c
At this point, the LOGFONT structure has been filled in with information obtained from the form's Font property. The next step is to change the escapement and orientation. Both of these parameters are specified in tenths of degrees. For example, to rotate the font 45 degrees, you'd set lfEscapement and lfOrientation to 450:
lf.lfEscapement = 450;
lf.lfOrientation = 450;
At this point, the LOGFONT structure has been filled in with information obtained from the form's Font property. The next step is to change the escapement and orientation. Both of these parameters are specified in tenths of degrees. For example, to rotate the font 45 degrees, you'd set lfEscapement and lfOrientation to 450:
lf.lfEscapement = 450;
lf.lfOrientation = 450;
