6 writes to FirstPage
PresentationFramework (6)
MS\Internal\Documents\RowCache.cs (6)
781newRow.FirstPage = startPage - (newRow.PageCount - 1); 785newRow.FirstPage = startPage; 841newRow.FirstPage = startPage; 935newRow.FirstPage = currentPage; 1020updatedRow.FirstPage = currentRow.FirstPage; 1131updatedRow.FirstPage = oldRow.FirstPage;
27 references to FirstPage
PresentationFramework (27)
MS\Internal\Documents\DocumentGrid.cs (14)
1201for (int page = currentRow.FirstPage; page < currentRow.FirstPage + currentRow.PageCount; page++) 1406_firstVisiblePageNumber = firstRow.FirstPage; 1408_lastVisiblePageNumber = lastRow.FirstPage + lastRow.PageCount - 1; 1433for (int j = currentRow.FirstPage; j < currentRow.FirstPage + currentRow.PageCount; j++) 2303for (int i = row.FirstPage; i < row.FirstPage + row.PageCount; i++) 2693ArgumentOutOfRangeException.ThrowIfLessThan(pageNumber, row.FirstPage); 2694ArgumentOutOfRangeException.ThrowIfGreaterThan(pageNumber, row.FirstPage + row.PageCount); 2702for (int i = row.FirstPage; i < pageNumber; i++) 2898if (_savedPivotRow.FirstPage < _rowCache.RowCount) 2900RowInfo newRow = _rowCache.GetRowForPageNumber(_savedPivotRow.FirstPage); 3016MakePageVisible(pivotRow.FirstPage);
MS\Internal\Documents\RowCache.cs (13)
284if (pageNumber >= rowInfo.FirstPage && 285pageNumber < rowInfo.FirstPage + rowInfo.PageCount) 468for (int j = currentRow.FirstPage; j < currentRow.FirstPage + pageCount; j++) 610return lastRow.FirstPage + lastRow.PageCount - 1; 684currentPage = newRow.FirstPage; 1020updatedRow.FirstPage = currentRow.FirstPage; 1024for (int i = currentRow.FirstPage; i < currentRow.FirstPage + currentRow.PageCount; i++) 1035currentPage = updatedRow.FirstPage + updatedRow.PageCount; 1127if (oldRow.FirstPage < startPage) 1131updatedRow.FirstPage = oldRow.FirstPage; 1133for (int i = oldRow.FirstPage; i < startPage; i++)