 | Pdfium.FPDFText_GetUnicodeEx Method |
Get Unicode of a character in a page
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static char FPDFText_GetUnicodeEx(
IntPtr text_page,
int index
)
Public Shared Function FPDFText_GetUnicodeEx (
text_page As IntPtr,
index As Integer
) As Char
public:
static wchar_t FPDFText_GetUnicodeEx(
IntPtr text_page,
int index
)
static member FPDFText_GetUnicodeEx :
text_page : IntPtr *
index : int -> char
public static char FPDFText_GetUnicodeEx(
IntPtr text_page,
int index
)
Patagames.Pdf.Pdfium.FPDFText_GetUnicodeEx = function(text_page, index);
Parameters
- text_page IntPtr
- Handle to a text page information structure. Returned by FPDFText_LoadPage(IntPtr) function.
- index Int32
- Zero-based index of the character
Return Value
CharThe Unicode of the particular character.
If a character is not encoded in Unicode and Pdfium engine can't convert to Unicode,
the return value will be zero character (\0).
See Also