Hi, does anyone know if there is an expression or built-in function that can measure or manipulate strings using the Text object strictly with pixel values instead of character index positions?
We can currently count the number of characters in a sentence and extract the string based on character positions using expressions such as StrLength() and SubStr().
But let’s say I want to set a word wrap width of 200 pixels, and it results in a sentence “This is an example of a very long sentence” being wrapped to
“This is an example
of a very long
sentence”
Can I measure the pixel widths of the different lines that are wrapped if they were individual phrases?