Trims all whitespace out of the Value property
void TrimValue()
Trim only makes sense on string values, so if called on a non-string Value, it will be converted into a string.
Value = "Fuel Capacity"; TrimValue(); // Name is now "FuelCapacity"