6 writes to FirstPage
PresentationFramework (6)
MS\Internal\Documents\RowCache.cs (6)
775newRow.FirstPage = startPage - (newRow.PageCount - 1); 779newRow.FirstPage = startPage; 836FirstPage = startPage 932FirstPage = currentPage 1019FirstPage = currentRow.FirstPage 1132FirstPage = oldRow.FirstPage
27 references to FirstPage
PresentationFramework (27)
MS\Internal\Documents\DocumentGrid.cs (14)
1193for (int page = currentRow.FirstPage; page < currentRow.FirstPage + currentRow.PageCount; page++) 1398_firstVisiblePageNumber = firstRow.FirstPage; 1400_lastVisiblePageNumber = lastRow.FirstPage + lastRow.PageCount - 1; 1425for (int j = currentRow.FirstPage; j < currentRow.FirstPage + currentRow.PageCount; j++) 2292for (int i = row.FirstPage; i < row.FirstPage + row.PageCount; i++) 2678ArgumentOutOfRangeException.ThrowIfLessThan(pageNumber, row.FirstPage); 2679ArgumentOutOfRangeException.ThrowIfGreaterThan(pageNumber, row.FirstPage + row.PageCount); 2687for (int i = row.FirstPage; i < pageNumber; i++) 2883if (_savedPivotRow.FirstPage < _rowCache.RowCount) 2885RowInfo newRow = _rowCache.GetRowForPageNumber(_savedPivotRow.FirstPage); 3001MakePageVisible(pivotRow.FirstPage);
MS\Internal\Documents\RowCache.cs (13)
278if (pageNumber >= rowInfo.FirstPage && 279pageNumber < rowInfo.FirstPage + rowInfo.PageCount) 462for (int j = currentRow.FirstPage; j < currentRow.FirstPage + pageCount; j++) 604return lastRow.FirstPage + lastRow.PageCount - 1; 678currentPage = newRow.FirstPage; 1019FirstPage = currentRow.FirstPage 1024for (int i = currentRow.FirstPage; i < currentRow.FirstPage + currentRow.PageCount; i++) 1035currentPage = updatedRow.FirstPage + updatedRow.PageCount; 1127if (oldRow.FirstPage < startPage) 1132FirstPage = oldRow.FirstPage 1135for (int i = oldRow.FirstPage; i < startPage; i++)