FPDFText_LoadPage method
Function: FPDFText_LoadPage Prepare information about all characters in a page. Parameters: page - Handle to the page. Returned by FPDF_LoadPage function (in FPDFVIEW module). Return value: A handle to the text page information structure. NULL if something goes wrong. Comments: Application must call FPDFText_ClosePage to release the text page information.
Implementation
FPDF_TEXTPAGE FPDFText_LoadPage(FPDF_PAGE page) {
return _FPDFText_LoadPage(page);
}