Parses a matrix from given value.

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

Syntax

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

Parameters

value
Type: System..::..String
The value.
matrix
Type: System.Windows.Media..::..Matrix%
The matrix.

Return Value

A boolean indicating whether the parse operation was successful.

See Also