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