[]
Gets the Matrix3D associated with the specified key (in a PDF a Matrix3D should be represented as an array of 12 floats).
Gets defValue if the value does not exist or cannot be converted to a Matrix3D.
public static Matrix3D GetMatrix3D(this IPdfDict dict, PdfName key, Matrix3D defValue)
Public Shared Function GetMatrix3D(dict As IPdfDict, key As PdfName, defValue As Matrix3D) As Matrix3D
| Type | Name | Description |
|---|---|---|
| IPdfDict | dict | The current dictionary. |
| PdfName | key | The key of the value to get. |
| Matrix3D | defValue | The default value. |
| Type | Description |
|---|---|
| Matrix3D | The value associated with the specified key. |
Gets the Matrix3D associated with the specified key (in a PDF a Matrix3D should be represented as an array of 12 floats).
Gets defValue if the value does not exist or cannot be converted to a Matrix3D.
public static Matrix3D? GetMatrix3D(this IPdfDict dict, PdfName key, Matrix3D? defValue)
Public Shared Function GetMatrix3D(dict As IPdfDict, key As PdfName, defValue As Matrix3D?) As Matrix3D?
| Type | Name | Description |
|---|---|---|
| IPdfDict | dict | The current dictionary. |
| PdfName | key | The key of the value to get. |
| Matrix3D? | defValue | The default value. |
| Type | Description |
|---|---|
| Matrix3D? | The value associated with the specified key. |