Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

IPageableItemContainer Interface

 

Defines members that a data-bound control must implement in order to have paging functionality provided by the DataPager control.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)

public interface class IPageableItemContainer

NameDescription
System_CAPS_pubpropertyMaximumRows

Gets the maximum number of items to display on a single page of data.

System_CAPS_pubpropertyStartRowIndex

Gets the index of the first record that is displayed on a page of data.

NameDescription
System_CAPS_pubmethodSetPageProperties(Int32, Int32, Boolean)

Sets the properties of a page of data.

NameDescription
System_CAPS_pubeventTotalRowCountAvailable

Occurs when the data from the data source is made available to the control.

The IPageableItemContainer interface defines properties, methods, and events that must be implemented by data-bound controls in order to have paging functionality provided by the DataPager control. (An example of a control that implements this interface is the ListView control.)

The TotalRowCountAvailable event is raised when the DataPager control can bind to data. The DataPager control provides a handler for this event that is named OnTotalRowCountAvailable.

The SetPageProperties method is called by the DataPager control every time that the control must update the page-related properties. For example, this method is called when the user navigates to another page of data.

.NET Framework
Available since 3.5
Return to top
Show:
© 2017 Microsoft