hello
I have a small problem. I want to draw text vertical.
I have tried with the methode DrawText(...) but there are not any fitting options.
How can I draw text vertical ?
Could somebody please help me?
thanks a lot
alex
Printable View
hello
I have a small problem. I want to draw text vertical.
I have tried with the methode DrawText(...) but there are not any fitting options.
How can I draw text vertical ?
Could somebody please help me?
thanks a lot
alex
The way to do this is to change the escapement angle. Code similar to the follwins should work.
LOGFONT lf;
lf.lfEscapement = 900;
cfFontVertical.CreateFontIndirect(&lf);
pDC->SelectObject(&cfFontVertical);