NumericPagerField.CreateDataPagers Method

Definition

Creates the user interface (UI) controls for the pager field object and adds them to the specified container.

public:
 override void CreateDataPagers(System::Web::UI::WebControls::DataPagerFieldItem ^ container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex);
public override void CreateDataPagers (System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex);
override this.CreateDataPagers : System.Web.UI.WebControls.DataPagerFieldItem * int * int * int * int -> unit
Public Overrides Sub CreateDataPagers (container As DataPagerFieldItem, startRowIndex As Integer, maximumRows As Integer, totalRowCount As Integer, fieldIndex As Integer)

Parameters

container
DataPagerFieldItem

The container that is used to store the controls.

startRowIndex
Int32

The index of the first record on the page.

maximumRows
Int32

The maximum number of items on a single page.

totalRowCount
Int32

The total number of items.

fieldIndex
Int32

The index of the data pager field in the Fields collection.

Remarks

The CreateDataPagers method is a helper method. It is used by the DataPager.CreatePagerFields method to create the UI controls for the pager field, such as the numeric buttons.

Applies to

See also