Converts a string to a RectangleD structure.

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

Syntax

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

Parameters

s
Type: System..::..String
The string to convert.
result
Type: C1.C1Preview..::..RectangleD%
OUT: the created RectangleD 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