VAPINMWP_INIT_PAGENUMBER

Reports the current page number of the document. This is a parameter of the VAPINM_INIT notification message.

Syntax

#include <kvvapi.h>
VAPINM_INIT = uMsg;
VAPINMWP_INIT_PAGENUMBER = wParam;
int nCurrentPage = (int) LOWORD(lParam);
int cTotalPages = (int) HIWORD(lParam);

Arguments

Argument Description
nCurrentPage The current page number of the document.
cTotalPages The total number of pages in the document.

Returns

None

Discussion

This message is received after the document is opened and whenever the document page is changed.