In This Topic
Gets the nullable Double value associated with the specified key. If the value does not exist or cannot be converted to a Double, returns (which can be null).
Syntax
'Declaration
Public Shared Function GetDouble( _
ByVal As IPdfDict, _
ByVal As PdfName, _
ByVal As System.Nullable(Of Double) _
) As System.Nullable(Of Double)
public static System.Nullable<double> GetDouble(
IPdfDict ,
PdfName ,
System.Nullable<double>
)
Parameters
- dict
- The current dictionary.
- key
- The key identifying the value.
- defValue
- The default value.
Return Value
The value associated with the specified key, or .
See Also