 | PdfiumFPDFDICT_SetAtName Method |
Creates a Name object 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_SetAtName(
IntPtr handle,
string key,
string value,
Encoding enc = null
)
Public Shared Sub FPDFDICT_SetAtName (
handle As IntPtr,
key As String,
value As String,
Optional enc As Encoding = Nothing
)
public:
static void FPDFDICT_SetAtName(
IntPtr handle,
String^ key,
String^ value,
Encoding^ enc = nullptr
)
static member FPDFDICT_SetAtName :
handle : IntPtr *
key : string *
value : string *
?enc : Encoding
(* Defaults:
let _enc = defaultArg enc null
*)
-> unit
public static void FPDFDICT_SetAtName(
IntPtr handle,
String key,
String value,
Encoding enc = null
)
Patagames.Pdf.Pdfium.FPDFDICT_SetAtName = function(handle, key, value, enc);
Parameters
- handle IntPtr
- Handle to Dictionary object.
- key String
- The key contained in the Dictionary.
- value String
- Initial value for newly created name object
- enc Encoding (Optional)
- The encoding used to encode the value into an ANSI string. if Null DefaultAnsiEncoding is used.
See Also