5 instantiations of RowInfo
PresentationFramework (5)
MS\Internal\Documents\RowCache.cs (5)
729RowInfo newRow = new RowInfo(); 835RowInfo newRow = new RowInfo 931RowInfo newRow = new RowInfo 1017RowInfo updatedRow = new RowInfo 1130RowInfo updatedRow = new RowInfo
46 references to RowInfo
PresentationFramework (46)
MS\Internal\Documents\DocumentGrid.cs (16)
349RowInfo scrolledRow = _rowCache.GetRowForPageNumber(pageNumber); 374RowInfo row = _rowCache.GetRow(nextRow); 392RowInfo row = _rowCache.GetRow(previousRow); 1191RowInfo currentRow = _rowCache.GetRow(row); 1398RowInfo firstRow = _rowCache.GetRow(newFirstVisibleRow); 1400RowInfo lastRow = _rowCache.GetRow(newFirstVisibleRow + newVisibleRowCount - 1); 1423RowInfo currentRow = _rowCache.GetRow(i); 1596RowInfo currentRow = _rowCache.GetRow(row); 2289private bool RowIsClean(RowInfo row) 2309private void EnsureFit(RowInfo pivotRow) 2342private void ApplyViewParameters(RowInfo pivotRow) 2367private double CalculateScaleFactor(RowInfo pivotRow) 2676private double GetHorizontalOffsetForPage(RowInfo row, int pageNumber) 2886RowInfo newRow = _rowCache.GetRowForPageNumber(_savedPivotRow.FirstPage); 2967RowInfo pivotRow = _rowCache.GetRow(args.PivotRowIndex); 3168private RowInfo _savedPivotRow;
MS\Internal\Documents\RowCache.cs (30)
31_rowCache = new List<RowInfo>(_defaultRowCacheSize); 239public RowInfo GetRow(int index) 253public RowInfo GetRowForPageNumber(int pageNumber) 278RowInfo rowInfo = _rowCache[i]; 455RowInfo currentRow = _rowCache[i]; 604RowInfo lastRow = _rowCache[_rowCache.Count - 1]; 660RowInfo pivotRow = CreateFixedRow(pivotPage, columns); 673List<RowInfo> tempRows = new List<RowInfo>(pivotPage / columns); 678RowInfo newRow = CreateDynamicRow(currentPage - 1, pivotRowWidth, false /* backwards */); 702RowInfo newRow = CreateDynamicRow(currentPage, pivotRowWidth, true /*forwards */); 720private RowInfo CreateDynamicRow(int startPage, double rowWidth, bool createForward) 729RowInfo newRow = new RowInfo(); 811RowInfo newRow = CreateFixedRow(i, columns); 825private RowInfo CreateFixedRow(int startPage, int columns) 835RowInfo newRow = new RowInfo 887RowInfo lastRow = _rowCache[_rowCache.Count - 1]; 896RowInfo pivotRow = GetRow(_pivotRowIndex); 931RowInfo newRow = new RowInfo 961private void AddRow(RowInfo newRow) 974RowInfo lastRow = _rowCache[_rowCache.Count - 1]; 1014RowInfo currentRow = _rowCache[rowIndex]; 1017RowInfo updatedRow = new RowInfo 1053private void UpdateRow(int index, RowInfo newRow) 1068RowInfo oldRowInfo = _rowCache[index]; 1081RowInfo row = _rowCache[i]; 1108RowInfo row = _rowCache[i]; 1126RowInfo oldRow = GetRow(rowIndex); 1130RowInfo updatedRow = new RowInfo 1317private List<RowInfo> _rowCache;