DataPager.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 page-related properties in the DataPager control.
public:
virtual void SetPageProperties(int startRowIndex, int maximumRows, bool databind);
public virtual void SetPageProperties (int startRowIndex, int maximumRows, bool databind);
abstract member SetPageProperties : int * int * bool -> unit
override this.SetPageProperties : int * int * bool -> unit
Public Overridable Sub SetPageProperties (startRowIndex As Integer, maximumRows As Integer, databind As Boolean)
Parameters
- startRowIndex
- Int32
The index of the first record on the page of data.
- maximumRows
- Int32
The maximum number of items on a single page of data.
- databind
- Boolean
true
to rebind the control after the properties are set; otherwise, false
.
Exceptions
There is no data-bound control associated with the DataPager control.
Remarks
The SetPageProperties method sets new values for the StartRowIndex and MaximumRows properties. It also invokes the IPageableItemContainer.SetPageProperties method to update the page-related properties in the associated data-bound control.