6 writes to FirstPage
PresentationFramework (6)
MS\Internal\Documents\RowCache.cs (6)
776newRow.FirstPage = startPage - (newRow.PageCount - 1); 780newRow.FirstPage = startPage; 837FirstPage = startPage 933FirstPage = currentPage 1020FirstPage = currentRow.FirstPage 1133FirstPage = 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++) 2293for (int i = row.FirstPage; i < row.FirstPage + row.PageCount; i++) 2679ArgumentOutOfRangeException.ThrowIfLessThan(pageNumber, row.FirstPage); 2680ArgumentOutOfRangeException.ThrowIfGreaterThan(pageNumber, row.FirstPage + row.PageCount); 2688for (int i = row.FirstPage; i < pageNumber; i++) 2884if (_savedPivotRow.FirstPage < _rowCache.RowCount) 2886RowInfo newRow = _rowCache.GetRowForPageNumber(_savedPivotRow.FirstPage); 3002MakePageVisible(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; 1020FirstPage = currentRow.FirstPage 1025for (int i = currentRow.FirstPage; i < currentRow.FirstPage + currentRow.PageCount; i++) 1036currentPage = updatedRow.FirstPage + updatedRow.PageCount; 1128if (oldRow.FirstPage < startPage) 1133FirstPage = oldRow.FirstPage 1136for (int i = oldRow.FirstPage; i < startPage; i++)