2023-07-30 12:10 PM
My app needs to display emails. How do I setup "Wildcard Characters", "Wildcard ranges"... to allow the TextArea to display Unicode Text dynamically (text generated at runtime)?
Thanks.
2023-07-31 02:57 AM
Hello @TuanLe,
You can setup your typography like this
If you want to support more symbols you can add them to the Wildcard Characters. Also, keep don't forget to assign enough space to your wildcard buffer.
Hope this helps you.
2023-07-31 04:07 AM
Thanks for the reply, Mohammad. Can the 3 ranges listed above cover all the Unicode Code Points? For example, I want to cover the code points from 0x0 to U+101E4, but TouchGFX's regular expression only allows me to enter 0xNNNN. So, several code points cannot be listed in the "Wildcard Ranges".
2023-08-02 02:06 AM
Yes, you can define the ranges in Wildcard Ranges using raw hex code, like 0x0000-0x5555, instead of defining them range by range using characters. However, unfortunately, TouchGFX does not supports Unicode characters larger than 16bits. So, we cannot have U+101E4 in the ranges.