Converts the value of a Unicode character to its uppercase equivalent
OutputVar := MfChar.ToUpper(c)
OutputVar := MfChar.ToUpper(s,index)
Returns the uppercase equivalent of c, or the unchanged value of c, if c is already uppercase or not alphabetic.
Returns the uppercase equivalent of the character at position index in s or the unchanged value of character at position index if character is already uppercase or not alphabetic.
c
The character to evaluate. Can be a var containing character or MfChar instance or string var containing hex value Eg:"0x0061". c corresponds to a single linguistic Unicode character.
s
A string. Can be a string var or MfString instance.
index
The zero-based index position of the character to evaluate in s. Can be a Integer var or MfInteger instance.
Static Method.
If ReturnAsObject is true for parameter c then an instance of MfChar representing the uppercase char is returned; Otherwise a string var is returned containing the uppercase value.
Throws MfInvalidOperationException if not called as a static method.
Throws MfArgumentOutOfRangeException if index is not in the valid range of s.
Throws MfNotSupportedException if call to method is outside its overloads.
Throws MfException on any general errors.