Hi Dojo,
I have a generic script that I use to show a confirmation message. As you can see in below code the script only has one label and two button widgets.
Is there a way that the provided text automatically wraps so that the user doesn't need to scroll?
Jens Vandewalle [SLC] [DevOps Enabler] Selected answer as best 6th July 2023
Hi Jens, I always use this code to wrap the text after a specific number of characters.
Usage:
var wrapped = WrapText.Wrap(text, 150);
Jens Vandewalle [SLC] [DevOps Enabler] Selected answer as best 6th July 2023
Works as a charm. Thank you!