TextView::ItemsPerPage Property
Sets or returns the number of items displayed per page after pagination.
Assembly: System.Web.Mobile (in System.Web.Mobile.dll)
The ItemsPerPage property is used by developers of custom device adapters for rendering the contents.
If zero, pagination is not affected by this property. If nonzero, overrides items displayed per page when the form is paginated. The default value is zero.
Mobile controls that support internal pagination also provide a feature called custom pagination. Normally, such controls require you to provide them all the data that they can display. Developers specify the total number of items that are in the list in the ItemCount property. The ItemsPerPage property specifies how many items the control displays per page.
The following code example sets the number of items for each postback. This example is part of a larger example for the TextView class overview.
protected void Page_Load(object sender, EventArgs args) { if (!IsPostBack) { Primes.ItemCount = 2000; Primes.ItemsPerPage = 20; form1.ControlToPaginate = Primes; } }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.