ToLower()

Namespace ›› System ›› MfChar ›› Methods ››
Parent Previous Next

ToLower()

Converts the value of a Unicode character to its lowercase equivalent

OutputVar := MfChar.ToLower(c)
OutputVar := MfChar.ToLower(s, index)

ToLower(c)

Returns the lowercase equivalent of c, or the unchanged value of c, if c is already lowercase or not alphabetic.

ToLower(s, index)

Returns the lowercase equivalent of the character at position index in s or the unchanged value of character at position index if character is already lowercase or not alphabetic.


Parameters

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.

Remarks

Static Method.
If ReturnAsObject is true for parameter c then an instance of MfChar representing the lowercase char is returned; Otherwise a string var is returned containing the lowercase value.

Throws

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.