toString method
Returns a nice string representing size and dimensions of rectangle. @return {string} In the form (50, 73 - 75w x 25h). @override
Implementation
@override
String toString()
{
return "(" + left.toString() + ", " + top.toString() + " - " + width.toString() + "w x " + height.toString() + "h)";
}