 | PdfiumFPDFDICT_GetIntegerByEx Method |
Gets the integer value from Number object associated with the specified key.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.111.2704
Syntaxpublic static int FPDFDICT_GetIntegerByEx(
IntPtr handle,
string key,
int defaultValue
)
Public Shared Function FPDFDICT_GetIntegerByEx (
handle As IntPtr,
key As String,
defaultValue As Integer
) As Integer
public:
static int FPDFDICT_GetIntegerByEx(
IntPtr handle,
String^ key,
int defaultValue
)
static member FPDFDICT_GetIntegerByEx :
handle : IntPtr *
key : string *
defaultValue : int -> int public static int FPDFDICT_GetIntegerByEx(
IntPtr handle,
String key,
int defaultValue
)
Patagames.Pdf.Pdfium.FPDFDICT_GetIntegerByEx = function(handle, key, defaultValue);
Parameters
- handle IntPtr
- Handle to Dictionary object.
- key String
- The key contained in the Dictionary.
- defaultValue Int32
- Default value.
Return Value
Int32An integer value associated with the specified key. Please see remarks for important details.
Remarks Note |
|---|
| Please note this method returns defaultValue if key not found or 0 if handle is IntPtr.Zero |
See Also