5 instantiations of RowInfo
PresentationFramework (5)
MS\Internal\Documents\RowCache.cs (5)
728RowInfo newRow = new RowInfo(); 834RowInfo newRow = new RowInfo 930RowInfo newRow = new RowInfo 1016RowInfo updatedRow = new RowInfo 1129RowInfo updatedRow = new RowInfo
46 references to RowInfo
PresentationFramework (46)
MS\Internal\Documents\DocumentGrid.cs (16)
348RowInfo scrolledRow = _rowCache.GetRowForPageNumber(pageNumber); 373RowInfo row = _rowCache.GetRow(nextRow); 391RowInfo row = _rowCache.GetRow(previousRow); 1190RowInfo currentRow = _rowCache.GetRow(row); 1397RowInfo firstRow = _rowCache.GetRow(newFirstVisibleRow); 1399RowInfo lastRow = _rowCache.GetRow(newFirstVisibleRow + newVisibleRowCount - 1); 1422RowInfo currentRow = _rowCache.GetRow(i); 1595RowInfo currentRow = _rowCache.GetRow(row); 2288private bool RowIsClean(RowInfo row) 2308private void EnsureFit(RowInfo pivotRow) 2341private void ApplyViewParameters(RowInfo pivotRow) 2366private double CalculateScaleFactor(RowInfo pivotRow) 2675private double GetHorizontalOffsetForPage(RowInfo row, int pageNumber) 2885RowInfo newRow = _rowCache.GetRowForPageNumber(_savedPivotRow.FirstPage); 2966RowInfo pivotRow = _rowCache.GetRow(args.PivotRowIndex); 3167private RowInfo _savedPivotRow;
MS\Internal\Documents\RowCache.cs (30)
30_rowCache = new List<RowInfo>(_defaultRowCacheSize); 238public RowInfo GetRow(int index) 252public RowInfo GetRowForPageNumber(int pageNumber) 277RowInfo rowInfo = _rowCache[i]; 454RowInfo currentRow = _rowCache[i]; 603RowInfo lastRow = _rowCache[_rowCache.Count - 1]; 659RowInfo pivotRow = CreateFixedRow(pivotPage, columns); 672List<RowInfo> tempRows = new List<RowInfo>(pivotPage / columns); 677RowInfo newRow = CreateDynamicRow(currentPage - 1, pivotRowWidth, false /* backwards */); 701RowInfo newRow = CreateDynamicRow(currentPage, pivotRowWidth, true /*forwards */); 719private RowInfo CreateDynamicRow(int startPage, double rowWidth, bool createForward) 728RowInfo newRow = new RowInfo(); 810RowInfo newRow = CreateFixedRow(i, columns); 824private RowInfo CreateFixedRow(int startPage, int columns) 834RowInfo newRow = new RowInfo 886RowInfo lastRow = _rowCache[_rowCache.Count - 1]; 895RowInfo pivotRow = GetRow(_pivotRowIndex); 930RowInfo newRow = new RowInfo 960private void AddRow(RowInfo newRow) 973RowInfo lastRow = _rowCache[_rowCache.Count - 1]; 1013RowInfo currentRow = _rowCache[rowIndex]; 1016RowInfo updatedRow = new RowInfo 1052private void UpdateRow(int index, RowInfo newRow) 1067RowInfo oldRowInfo = _rowCache[index]; 1080RowInfo row = _rowCache[i]; 1107RowInfo row = _rowCache[i]; 1125RowInfo oldRow = GetRow(rowIndex); 1129RowInfo updatedRow = new RowInfo 1316private List<RowInfo> _rowCache;