TryGetName Method (IPdfDictExt)
In This Topic
Tries to get the PDF Name value associated with the specified key. If the value does not exist or cannot be converted to a PDF Name, returns false.
Syntax
'Declaration
Public Shared Function TryGetName( _
ByVal As IPdfDict, _
ByVal As PdfName, _
ByRef As System.String _
) As System.Boolean
public static System.bool TryGetName(
IPdfDict ,
PdfName ,
out System.string
)
Parameters
- dict
- The current dictionary.
- key
- The key identifying the value.
- value
- OUT. When this method returns, contains the PDF Name value.
Return Value
true if value exists; otherwise, false.
See Also