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