Parses a rectangle from given string.

Namespace: FirstFloor.Documents
Assembly: FirstFloor.Documents (in FirstFloor.Documents.dll) Version: 2.5.0.0 (2.5.1.0)

Syntax

C#
public static bool TryParseRect(
	string value,
	out Rect rect
)
Visual Basic
Public Shared Function TryParseRect ( _
	value As String, _
	<OutAttribute> ByRef rect As Rect _
) As Boolean
Visual C++
public:
static bool TryParseRect(
	String^ value, 
	[OutAttribute] Rect% rect
)

Parameters

value
Type: System..::..String
The value.
rect
Type: System.Windows..::..Rect%
The rect.

Return Value

A boolean indicating whether the parse operation was successful.

See Also