 | PdfiumDictEnumCallback Delegate |
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic delegate void DictEnumCallback(
IntPtr handle,
string key,
IntPtr value
)
Public Delegate Sub DictEnumCallback (
handle As IntPtr,
key As String,
value As IntPtr
)
public delegate void DictEnumCallback(
IntPtr handle,
String^ key,
IntPtr value
)
type DictEnumCallback =
delegate of
handle : IntPtr *
key : string *
value : IntPtr -> unit
/** @delegate */
public delegate void DictEnumCallback(
IntPtr handle,
String key,
IntPtr value
)
function(handle, key, value);
Parameters
- handle IntPtr
- Handle to the dictionary itself.
- key String
- The key of the value/
- value IntPtr
- The value contained in the dictionary under the key.
See Also