6 writes to FirstPage
PresentationFramework (6)
MS\Internal\Documents\RowCache.cs (6)
776newRow.FirstPage = startPage - (newRow.PageCount - 1); 780newRow.FirstPage = startPage; 836newRow.FirstPage = startPage; 930newRow.FirstPage = currentPage; 1015updatedRow.FirstPage = currentRow.FirstPage; 1126updatedRow.FirstPage = oldRow.FirstPage;
27 references to FirstPage
PresentationFramework (27)
MS\Internal\Documents\DocumentGrid.cs (14)
1194for (int page = currentRow.FirstPage; page < currentRow.FirstPage + currentRow.PageCount; page++) 1399_firstVisiblePageNumber = firstRow.FirstPage; 1401_lastVisiblePageNumber = lastRow.FirstPage + lastRow.PageCount - 1; 1426for (int j = currentRow.FirstPage; j < currentRow.FirstPage + currentRow.PageCount; j++) 2296for (int i = row.FirstPage; i < row.FirstPage + row.PageCount; i++) 2686ArgumentOutOfRangeException.ThrowIfLessThan(pageNumber, row.FirstPage); 2687ArgumentOutOfRangeException.ThrowIfGreaterThan(pageNumber, row.FirstPage + row.PageCount); 2695for (int i = row.FirstPage; i < pageNumber; i++) 2891if (_savedPivotRow.FirstPage < _rowCache.RowCount) 2893RowInfo newRow = _rowCache.GetRowForPageNumber(_savedPivotRow.FirstPage); 3009MakePageVisible(pivotRow.FirstPage);
MS\Internal\Documents\RowCache.cs (13)
279if (pageNumber >= rowInfo.FirstPage && 280pageNumber < rowInfo.FirstPage + rowInfo.PageCount) 463for (int j = currentRow.FirstPage; j < currentRow.FirstPage + pageCount; j++) 605return lastRow.FirstPage + lastRow.PageCount - 1; 679currentPage = newRow.FirstPage; 1015updatedRow.FirstPage = currentRow.FirstPage; 1019for (int i = currentRow.FirstPage; i < currentRow.FirstPage + currentRow.PageCount; i++) 1030currentPage = updatedRow.FirstPage + updatedRow.PageCount; 1122if (oldRow.FirstPage < startPage) 1126updatedRow.FirstPage = oldRow.FirstPage; 1128for (int i = oldRow.FirstPage; i < startPage; i++)