1 write to _startRowIndex
System.Web.Extensions (1)
UI\WebControls\NextPreviousPagerField.cs (1)
528
_startRowIndex
= startRowIndex;
6 references to _startRowIndex
System.Web.Extensions (6)
UI\WebControls\NextPreviousPagerField.cs (6)
75
return
_startRowIndex
+ _maximumRows < _totalRowCount;
81
return
_startRowIndex
> 0;
440
int newStartRowIndex =
_startRowIndex
- DataPager.PageSize;
448
int newStartRowIndex =
_startRowIndex
+ DataPager.PageSize;
571
int pageIndex = (
_startRowIndex
/ _maximumRows) - 1;
577
int pageIndex = (
_startRowIndex
+ _maximumRows) / _maximumRows;