5 instantiations of RowInfo
PresentationFramework (5)
MS\Internal\Documents\RowCache.cs (5)
729RowInfo newRow = new RowInfo(); 835RowInfo newRow = new RowInfo(); 929RowInfo newRow = new RowInfo(); 1013RowInfo updatedRow = new RowInfo(); 1124RowInfo 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); 1594RowInfo currentRow = _rowCache.GetRow(row); 2292private bool RowIsClean(RowInfo row) 2312private void EnsureFit(RowInfo pivotRow) 2345private void ApplyViewParameters(RowInfo pivotRow) 2370private double CalculateScaleFactor(RowInfo pivotRow) 2683private double GetHorizontalOffsetForPage(RowInfo row, int pageNumber) 2893RowInfo newRow = _rowCache.GetRowForPageNumber(_savedPivotRow.FirstPage); 2974RowInfo pivotRow = _rowCache.GetRow(args.PivotRowIndex); 3175private 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(); 885RowInfo lastRow = _rowCache[_rowCache.Count - 1]; 894RowInfo pivotRow = GetRow(_pivotRowIndex); 929RowInfo newRow = new RowInfo(); 957private void AddRow(RowInfo newRow) 970RowInfo lastRow = _rowCache[_rowCache.Count - 1]; 1010RowInfo currentRow = _rowCache[rowIndex]; 1013RowInfo updatedRow = new RowInfo(); 1047private void UpdateRow(int index, RowInfo newRow) 1062RowInfo oldRowInfo = _rowCache[index]; 1075RowInfo row = _rowCache[i]; 1102RowInfo row = _rowCache[i]; 1120RowInfo oldRow = GetRow(rowIndex); 1124RowInfo updatedRow = new RowInfo(); 1309private List<RowInfo> _rowCache;