 | PdfiumFPDFText_GetText Method |
Extract unicode text string from the page
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static string FPDFText_GetText(
IntPtr text_page,
int start_index,
int count
)
Public Shared Function FPDFText_GetText (
text_page As IntPtr,
start_index As Integer,
count As Integer
) As String
public:
static String^ FPDFText_GetText(
IntPtr text_page,
int start_index,
int count
)
static member FPDFText_GetText :
text_page : IntPtr *
start_index : int *
count : int -> string
public static String FPDFText_GetText(
IntPtr text_page,
int start_index,
int count
)
Patagames.Pdf.Pdfium.FPDFText_GetText = function(text_page, start_index, count);
Parameters
- text_page IntPtr
- Handle to a text page information structure. Returned by FPDFText_LoadPage(IntPtr) function.
- start_index Int32
- Index for the start characters
- count Int32
- Number of characters to be extracted
Return Value
StringUnicode text string from the page
RemarksThis function ignores characters without unicode information
See Also