PageSize Property

 

Description

 

Indicates how many records constitute one page in the Recordset.

 

Sets or returns a Long value that indicates how many records are on a page. The default is 10.

 

PowerBASIC Syntax

 

PROPERTY GET PageSize () AS LONG

PROPERTY SET PageSize (BYVAL PageSize AS LONG)

 

Parameter (SET PageSize only)

 

PageSize

LONG. Number of records on a page. The default is 10.

 

Return Value (GET PageSize only)

 

LONG. The number of records on a page

 

Remarks

 

Use the PageSize property to determine how many records make up a logical page of data. Establishing a page size allows you to use the AbsolutePage property to move to the first record of a particular page. This is useful in Web-server scenarios when you want to allow the user to page through data, viewing a certain number of records at a time.

 

This property can be set at any time, and its value will be used for calculating the location of the first record of a particular page.

 

Valid XHTML 1.0 Transitional