try_parse method
try_parse
Converts the string representation of a point to its class equivalent. A return value indicates whether the conversion is succeeded or failed.
Returns
true if s is converted successfully; otherwise, false.
def try_parse(self, s, point):
...
| Parameter | Type | Description |
|---|---|---|
| s | System.String | A string containing a point to convert. |
| point | any | When the method returns, it contains the instance of Point class
that is equivalent to the value specified in s parameter, if the conversion is succeeded; otherwise, null. |
See Also
- module
groupdocs.parser.data - class
Point