[]
Tries to get the Double value associated with the specified key. If the value does not exist or cannot be converted to a Double, returns false.
public static bool TryGetDouble(this IPdfDict dict, PdfName key, out double value)
Public Shared Function TryGetDouble(dict As IPdfDict, key As PdfName, ByRef value As Double) As Boolean
Type | Name | Description |
---|---|---|
IPdfDict | dict | The current dictionary. |
PdfName | key | The key identifying the value. |
double | value | OUT. When this method returns, contains the Double value. |
Type | Description |
---|---|
bool | true if value exists; otherwise, false. |