 | PdfiumFPDFSTRING_CreateChar(String, Boolean, Encoding) Method |
Create new String object and initialise it with ANSI string
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static IntPtr FPDFSTRING_CreateChar(
string value,
bool bHex,
Encoding enc = null
)
Public Shared Function FPDFSTRING_CreateChar (
value As String,
bHex As Boolean,
Optional enc As Encoding = Nothing
) As IntPtr
public:
static IntPtr FPDFSTRING_CreateChar(
String^ value,
bool bHex,
Encoding^ enc = nullptr
)
static member FPDFSTRING_CreateChar :
value : string *
bHex : bool *
?enc : Encoding
(* Defaults:
let _enc = defaultArg enc null
*)
-> IntPtr
public static IntPtr FPDFSTRING_CreateChar(
String value,
boolean bHex,
Encoding enc = null
)
Patagames.Pdf.Pdfium.FPDFSTRING_CreateChar = function(value, bHex, enc);
Parameters
- value String
- Initial value for this object
- bHex Boolean
- Indicates whether a value is a HEX
- enc Encoding (Optional)
- The encoding used to encode the value into an ANSI string. if Null DefaultAnsiEncoding is used.
Return Value
IntPtrHandle to a newly created object
See Also