[]
Gets the nullable Double value associated with the specified key.
If the value does not exist or cannot be converted to a Double,
returns defValue
(which can be null).
public static double? GetDouble(this IPdfDict dict, PdfName key, double? defValue)
Public Shared Function GetDouble(dict As IPdfDict, key As PdfName, defValue As Double?) As Double?
Type | Name | Description |
---|---|---|
IPdfDict | dict | The current dictionary. |
PdfName | key | The key identifying the value. |
double? | defValue | The default value. |
Type | Description |
---|---|
double? | The value associated with the specified key, or |