TryGetValue Method (IPdfDictExt)
In This Topic
Tries to get a value with specified key. The method does not perform any processing of the value and returns it as is.
Syntax
'Declaration
Public Shared Function TryGetValue( _
ByVal As IPdfDict, _
ByVal As PdfName, _
ByRef As IPdfObject _
) As System.Boolean
public static System.bool TryGetValue(
IPdfDict ,
PdfName ,
out IPdfObject
)
Parameters
- dict
- The current dictionary.
- key
- The key of the value.
- value
- OUT: The value.
Return Value
true if value exists, false otherwise.
See Also