I have a limited space in my app where I have a label. In that label I am displaying different names based on date. The problem is that when the name is too long the name is cut off.
For example: string name = "Jacob Test" is okay but when string name = "Martinus Velikus Test" then label display ony Martinus Velikus T and the rest isn't displaying.
How do I make then text move from right to left? :)
Thank for any suggestions. Have a nice day.
CodePudding user response:
Thanks @duerzd696 I used your way and it worked :)