TextCase
type TextCase = "ORIGINAL" | "UPPER" | "LOWER" | "TITLE"
The possible values are:
"ORIGINAL"
: show the text as defined, no overrides."UPPER"
: all characters are in upper case."LOWER"
: all characters are in lower case."TITLE"
: all characters are in camel case. This is the "Capitalize" option in the UI.