08-26-2016 05:39 AM
Hello everyone,
I'm printing a kind of a summary on my frame thanks to the object "Comment".
Something like this :
mySummary : string := " Value 1 : " + to_str(val1) + " Value 2 : " + to_str(val2) + " Value 3 : " + to_str(val3) ;
myComment.text := mySummary ;
But the result looks like this :
Value 1 : Val1 Value 2 : val2 Value 3 : val3
What I'm looking for is to display the summary list a list
Value 1 : Val1
Value 2 : val2
Value 3 : val3
How can I force to line break ?
Thank you very much !
BR
O.C
Solved! Go to Solution.
08-26-2016 05:56 AM
Steffen Bangsow freelance simulation specialist web: www.bangsow.eu mail: steffen@bangsow.net | ![]() |
08-26-2016 06:00 AM