In This Topic
Tries to get the
System.Numerics.Matrix3x2 associated with the specified key (in a PDF a
System.Numerics.Matrix3x2 should be represented as an array of 6 floats).
Adds a warning to GrapeCity.Documents.Pdf.GcPdfDocument.ParserLog if the value exists but cannot be converted to System.Numerics.Matrix3x2.
Syntax
'Declaration
Public Shared Function TryGetMatrix( _
ByVal As IPdfDict, _
ByVal As PdfName, _
ByRef As System.Numerics.Matrix3x2 _
) As System.Boolean
public static System.bool TryGetMatrix(
IPdfDict ,
PdfName ,
out System.Numerics.Matrix3x2
)
Parameters
- dict
- The current dictionary.
- key
- The key of the value to get.
- value
- OUT: the value associated with the specified key.
Return Value
True if the key was found and the value could be converted to a System.Numerics.Matrix3x2, false otherwise.
See Also