Gets the current page index.
Syntax
[JavaScript]
var ret = FpSpread1.GetCurrentPageIndex();
Parameters
-
None
Return Type
Integer, index of the current page
Remarks
This method returns the page index of the page that is currently displayed. A page contains the number of rows specified by the PageSize property.
Example
This is a sample that contains the method. On the client side, the script that contains the method would look like this:
JavaScript | Copy Code |
---|---|
<SCRIPT language=javascript> function getHValue() { var ss=document.getElementById("FpSpread1"); var totalRow = ss.GetCurrentPageIndex(); } </SCRIPT> |