RowsPerScreen

Sets the maximum number of rows displayed on each screen.

Use this property to limit the number of rows displayed per screen, and then use the forward and back buttons to display next or previous screens. Each user has a Grid Size setting in their Preferences. This setting overrides the RowsPerScreen setting except where you're using the ListBlock in a CRMSelfService object.

Parameters

None

Examples

ListBlock = CRM.GetBlock("CompanyGrid");
ListBlock.RowsPerScreen = 8;
CRM.AddContent(ListBlock.Execute());
Response.Write(CRM.GetPage());

Displays a list of companies, 8 entries per screen.