 | PdfiumFPDFDICT_SetAtBoolean Method |
Creates an Boolean object, initialize it with the value and sets it at the specified key of dictionary.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFDICT_SetAtBoolean(
IntPtr handle,
string key,
bool value
)
Public Shared Sub FPDFDICT_SetAtBoolean (
handle As IntPtr,
key As String,
value As Boolean
)
public:
static void FPDFDICT_SetAtBoolean(
IntPtr handle,
String^ key,
bool value
)
static member FPDFDICT_SetAtBoolean :
handle : IntPtr *
key : string *
value : bool -> unit
public static void FPDFDICT_SetAtBoolean(
IntPtr handle,
String key,
boolean value
)
Patagames.Pdf.Pdfium.FPDFDICT_SetAtBoolean = function(handle, key, value);
Parameters
- handle IntPtr
- Handle to Dictionary object.
- key String
- The key contained in the Dictionary.
- value Boolean
- Initial value for newly created Boolean object
See Also