1 write to ButtonCount
System.Web.Extensions (1)
UI\WebControls\NumericPagerField.cs (1)
270((NumericPagerField)newField).ButtonCount = ButtonCount;
17 references to ButtonCount
System.Web.Extensions (17)
UI\WebControls\NumericPagerField.cs (17)
42if (value != ButtonCount) { 270((NumericPagerField)newField).ButtonCount = ButtonCount; 292int firstButtonIndex = (_startRowIndex / (ButtonCount * DataPager.PageSize)) * ButtonCount; 293int lastButtonIndex = firstButtonIndex + ButtonCount - 1; 415int firstButtonIndex = (_startRowIndex / (ButtonCount * _maximumRows)) * ButtonCount; 416int lastButtonIndex = firstButtonIndex + ButtonCount - 1; 424for (int i = 0; i < ButtonCount && _totalRowCount > ((i + firstButtonIndex) * _maximumRows); i++) { 450int firstButtonIndex = (_startRowIndex / (ButtonCount * _maximumRows)) * ButtonCount; 451int lastButtonIndex = firstButtonIndex + ButtonCount - 1; 459for (int i = 0; i < ButtonCount && _totalRowCount > ((i + firstButtonIndex) * _maximumRows); i++) { 476container.Controls.Add(CreateNextPrevLink(NextPageText, firstButtonIndex + ButtonCount, NextPageImageUrl)); 486if (String.Equals(field.ButtonCount, this.ButtonCount) && 504this.ButtonCount.GetHashCode() |