Construct a new PagingHelper.

Namespace:  Endeca.Web.UI.WebControls
Assembly:  Endeca.Web.UI.WebControls (in Endeca.Web.UI.WebControls.dll) Version: 2.1.1.0 (2.1.1.620)

Syntax

C#
public PagingInfo(
	int pageSize,
	int pageButtonCount,
	long offset,
	long totalItemCount
)
Visual Basic (Declaration)
Public Sub New ( _
	pageSize As Integer, _
	pageButtonCount As Integer, _
	offset As Long, _
	totalItemCount As Long _
)
Visual C++
public:
PagingInfo(
	int pageSize, 
	int pageButtonCount, 
	long long offset, 
	long long totalItemCount
)

Parameters

pageSize
Type: System..::.Int32
number of records per page
pageButtonCount
Type: System..::.Int32
number of page links to display
offset
Type: System..::.Int64
offset into the record set
totalItemCount
Type: System..::.Int64
total number of records

See Also