This method returns the lowercase version of the wide string.
Returns the string, converted to lowercase.
#include "UltraEngine.h"
using namespace UltraEngine;
int main(int argc, const char* argv[])
{
WString s = "John Smith";
Print(s.Lower());
return 0;
}