function LocaleUpperCase(const Value: String): String
The LocaleUpperCase function returns the Value input parameter with all characters converted to their upper-case representation. The browser's current locale setting is used to perform this conversion. The return value is a String value.
Examples
X := LocaleUpperCase('Hello World'); // X is 'HELLO WORLD'