 | PdfiumFPDFARRAY_AddString Method |
Creates a String object and adds it at the end of Array.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFARRAY_AddString(
IntPtr handle,
string value,
Encoding enc = null
)
Public Shared Sub FPDFARRAY_AddString (
handle As IntPtr,
value As String,
Optional enc As Encoding = Nothing
)
public:
static void FPDFARRAY_AddString(
IntPtr handle,
String^ value,
Encoding^ enc = nullptr
)
static member FPDFARRAY_AddString :
handle : IntPtr *
value : string *
?enc : Encoding
(* Defaults:
let _enc = defaultArg enc null
*)
-> unit
public static void FPDFARRAY_AddString(
IntPtr handle,
String value,
Encoding enc = null
)
Patagames.Pdf.Pdfium.FPDFARRAY_AddString = function(handle, value, enc);
Parameters
- handle IntPtr
- Handle to Dictionary object.
- value String
- Initial value for newly created String object
- enc Encoding (Optional)
- The encoding used to encode the value into an ANSI string. if Null DefaultAnsiEncoding is used.
Remarks
This method creates string object, initializes it with the ANSI string, and adds it to the end of the array.
See Also