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)
1190for (int page = currentRow.FirstPage; page < currentRow.FirstPage + currentRow.PageCount; page++) 1395_firstVisiblePageNumber = firstRow.FirstPage; 1397_lastVisiblePageNumber = lastRow.FirstPage + lastRow.PageCount - 1; 1422for (int j = currentRow.FirstPage; j < currentRow.FirstPage + currentRow.PageCount; j++) 2289for (int i = row.FirstPage; i < row.FirstPage + row.PageCount; i++) 2675ArgumentOutOfRangeException.ThrowIfLessThan(pageNumber, row.FirstPage); 2676ArgumentOutOfRangeException.ThrowIfGreaterThan(pageNumber, row.FirstPage + row.PageCount); 2684for (int i = row.FirstPage; i < pageNumber; i++) 2880if (_savedPivotRow.FirstPage < _rowCache.RowCount) 2882RowInfo newRow = _rowCache.GetRowForPageNumber(_savedPivotRow.FirstPage); 2998MakePageVisible(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++)