Converts a string to a PointD structure.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public static bool Parse(
	string s,
	out PointD result,
	bool throwException
)
Visual Basic
Public Shared Function Parse ( _
	s As String, _
	<OutAttribute> ByRef result As PointD, _
	throwException As Boolean _
) As Boolean

Parameters

s
Type: System..::..String
The string to convert.
result
Type: C1.C1Preview..::..PointD%
OUT: the created PointD structure.
throwException
Type: System..::..Boolean
Indicates whether an exception should be thrown if the string cannot be converted.

Return Value

true if no error occurred, false otherwise (if throwException is false).

See Also