Gets the first data row index of page that was specified by parameter.
[Visual Basic]
Public Function GetPageFirstRowIndex( _
ByVal pageNumber As Integer _
) As Integer
[C#]
public int GetPageFirstRowIndex(
int pageNumber
);
Parameters
-
pageNumber
- Page number.
Return Value
Returns data row index.
Example
How to get the first data row index of the first page.
Dim index As Integer = printSupport.GetPageFirstRowIndex(1)
int index = printSupport.GetPageFirstRowIndex(1);
See Also
AwDbPrintSupport Class | Asterworld.Data Namespace