DrawTextRotated linebreak issue

tamadon

Active Member
Licensed User
Longtime User
I have the following code and I want to include a line break between the words. However the resulting text stays one line with a square character in between representing the CRFL constant.

What am I missing?

curText = "WRONG " & CRLF & "SYMBOL!"
cvsTopMessage.DrawTextRotated(curText, 0, 0, fontStyle, 24 , Colors.Red, "RIGHT", 180)
 
Top