T tamadon Active Member Licensed User Longtime User Oct 23, 2012 #1 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) Click to expand...
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) Click to expand...
Erel B4X founder Staff member Licensed User Longtime User Oct 23, 2012 #2 This is a limitation of the native Canvas object. You will need to draw each line separately. Upvote 0