 | PdfiumFPDFTextObj_GetText(IntPtr, Encoding) Method |
Retrieves non-unicode text from the text object.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static string FPDFTextObj_GetText(
IntPtr textObject,
Encoding enc = null
)
Public Shared Function FPDFTextObj_GetText (
textObject As IntPtr,
Optional enc As Encoding = Nothing
) As String
public:
static String^ FPDFTextObj_GetText(
IntPtr textObject,
Encoding^ enc = nullptr
)
static member FPDFTextObj_GetText :
textObject : IntPtr *
?enc : Encoding
(* Defaults:
let _enc = defaultArg enc null
*)
-> string
public static String FPDFTextObj_GetText(
IntPtr textObject,
Encoding enc = null
)
Patagames.Pdf.Pdfium.FPDFTextObj_GetText = function(textObject, enc);
Parameters
- textObject IntPtr
- A handle to the text object.
- enc Encoding (Optional)
- The encoding used to decode an ANSI string into a String. if Null DefaultAnsiEncoding is used.
Return Value
StringNon-unicode text from the text object.
Remarks
See Also