CFont fontAPI;
fontAPI.CreateFont(24, 0, 900, 900, FW_BOLD, 0, 0, 0, 0, 0, 0, 0, 0,
"Tahoma");
in GDI + ?
Thankx
André
> What is the equivalent for
>
> CFont fontAPI;
> fontAPI.CreateFont(24, 0, 900, 900, FW_BOLD, 0, 0, 0, 0, 0, 0, 0, 0,
> "Tahoma");
GDI+ has two ways to rotate text:
StringFormaFlagsDirectionVertical which is limited to just one 90 degree
rotation, and Graphics.RotateTransform() (Graphics.SetTransform(), etc.).
The latter gives you the freedom to rotate, or skew, and/or translate
your text and other drawing at will.
Thanks,
- John
Microsoft Developer Support
This posting is provided "AS IS" with no warranties, and confers no rights.
Visit http://www.microsoft.com/security for current information on security.