 | PdfiumFPDFDICT_KeyExist Method |
Determines whether the Dictionary contains the specified key.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFDICT_KeyExist(
IntPtr handle,
string key
)
Public Shared Function FPDFDICT_KeyExist (
handle As IntPtr,
key As String
) As Boolean
public:
static bool FPDFDICT_KeyExist(
IntPtr handle,
String^ key
)
static member FPDFDICT_KeyExist :
handle : IntPtr *
key : string -> bool
public static boolean FPDFDICT_KeyExist(
IntPtr handle,
String key
)
Patagames.Pdf.Pdfium.FPDFDICT_KeyExist = function(handle, key);
Parameters
- handle IntPtr
- Handle to Dictionary object.
- key String
- The key to locate in the Dictionary.
Return Value
Booleantrue if the Dictionary contains an element with the specified key; otherwise, false.
See Also