DataPagerField.CreateDataPagers 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.
When overridden in a derived class, creates the user interface (UI) controls for the data pager field object and adds them to the specified container.
public:
abstract void CreateDataPagers(System::Web::UI::WebControls::DataPagerFieldItem ^ container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex);
public abstract void CreateDataPagers (System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex);
abstract member CreateDataPagers : System.Web.UI.WebControls.DataPagerFieldItem * int * int * int * int -> unit
Public MustOverride 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.
Remarks
The CreateDataPagers method is a helper method that is used by the DataPager.CreatePagerFields method to create the UI controls for the data pager field.