Foxit PDF SDK
9.1
|
Public Member Functions | |
void | onWillStartParseReflowPage (ReflowPage reflowPage, int zoom, int parseFlags, int pageIndex) |
void | onParsedReflowPage (ReflowPage reflowPage, int zoom, int parseFlags, int pageIndex) |
The interface for reflow event listener.
void com.foxit.sdk.PDFViewCtrl.IReflowEventListener.onParsedReflowPage | ( | ReflowPage | reflowPage, |
int | zoom, | ||
int | parseFlags, | ||
int | pageIndex | ||
) |
Triggered when the reflow page parsed
reflowPage | The ReflowPage object. |
zoom | The default zoom factor. The value represents the percent value, for example, 100 means 100%. This value should between 25 and 1000. |
parseFlags | Parsing flags. Please refer to values starting from ReflowPage#e_Normal and this should be one or a combination of these values. If no parsing flag is set, value ReflowPage#e_Normal will be used by default. |
pageIndex | The index of the page to be rendered. Valid range: from 0 to (count -1).count is the page count. |
void com.foxit.sdk.PDFViewCtrl.IReflowEventListener.onWillStartParseReflowPage | ( | ReflowPage | reflowPage, |
int | zoom, | ||
int | parseFlags, | ||
int | pageIndex | ||
) |
Triggered when the reflow page will startParse ReflowPage#startParse(PauseCallback)
reflowPage | The ReflowPage object. |
zoom | The default zoom factor. The value represents the percent value, for example, 100 means 100%. This value should between 25 and 1000. |
parseFlags | Parsing flags. Please refer to values starting from ReflowPage#e_Normal and this should be one or a combination of these values. If no parsing flag is set, value ReflowPage#e_Normal will be used by default. |
pageIndex | The index of the page to be rendered. Valid range: from 0 to (count -1).count is the page count. |