 | PdfiumFPDFDICT_SetAtNumber Method |
Creates a Number object, initialize it with float 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_SetAtNumber(
IntPtr handle,
string key,
float value
)
Public Shared Sub FPDFDICT_SetAtNumber (
handle As IntPtr,
key As String,
value As Single
)
public:
static void FPDFDICT_SetAtNumber(
IntPtr handle,
String^ key,
float value
)
static member FPDFDICT_SetAtNumber :
handle : IntPtr *
key : string *
value : float32 -> unit
public static void FPDFDICT_SetAtNumber(
IntPtr handle,
String key,
float value
)
Patagames.Pdf.Pdfium.FPDFDICT_SetAtNumber = function(handle, key, value);
Parameters
- handle IntPtr
- Handle to Dictionary object.
- key String
- The key contained in the Dictionary.
- value Single
- Initial value for newly created Number object
See Also