IPageableItemContainer.SetPageProperties(Int32, Int32, Boolean) Method     
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the properties of a page of data.
public:
 void SetPageProperties(int startRowIndex, int maximumRows, bool databind);
	public void SetPageProperties(int startRowIndex, int maximumRows, bool databind);
	abstract member SetPageProperties : int * int * bool -> unit
	Public Sub SetPageProperties (startRowIndex As Integer, maximumRows As Integer, databind As Boolean)
	Parameters
- startRowIndex
 - Int32
 
The index of the first record on the page.
- maximumRows
 - Int32
 
The maximum number of items on a single page.
- databind
 - Boolean
 
true to rebind the control after the properties are set; otherwise, false.
Remarks
The SetPageProperties method is called by the DataPager control every time that the control must update the page-related properties. When implemented by a class, the SetPageProperties method must internally update the MaximumRows and StartRowIndex properties by using the values of the maximumRows and startRowIndex parameters.