- string
- the string representation of a size value.
Documentation for this section has not yet been entered.
Type Reason Java.Lang.NumberFormatException if string cannot be parsed as a size value. Java.Lang.NullPointerException if string was null
Parses the specified string as a size value.
The ASCII characters \u002a ('*') and \u0078 ('x') are recognized as separators between the width and height.
For any SizeF s: SizeF.parseSizeF(s.toString()).equals(s). However, the method also handles sizes expressed in the following forms:
"widthxheight" or "width*height" => new SizeF(width, height), where width and height are string floats potentially containing a sign, such as "-10.3", "+7" or "5.2", but not containing an 'x' (such as a float in hexadecimal string format).