 | PdfiumFPDFText_GetUnicode Method |
Get Unicode of a character in a page
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static uint FPDFText_GetUnicode(
IntPtr text_page,
int index
)
Public Shared Function FPDFText_GetUnicode (
text_page As IntPtr,
index As Integer
) As UInteger
public:
static unsigned int FPDFText_GetUnicode(
IntPtr text_page,
int index
)
static member FPDFText_GetUnicode :
text_page : IntPtr *
index : int -> uint32
public static UInt32 FPDFText_GetUnicode(
IntPtr text_page,
int index
)
Patagames.Pdf.Pdfium.FPDFText_GetUnicode = 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
UInt32The 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.
See Also