5 instantiations of RowInfo
PresentationFramework (5)
MS\Internal\Documents\RowCache.cs (5)
734RowInfo newRow = new RowInfo(); 840RowInfo newRow = new RowInfo(); 934RowInfo newRow = new RowInfo(); 1018RowInfo updatedRow = new RowInfo(); 1129RowInfo updatedRow = new RowInfo();
46 references to RowInfo
PresentationFramework (46)
MS\Internal\Documents\DocumentGrid.cs (16)
356RowInfo scrolledRow = _rowCache.GetRowForPageNumber(pageNumber); 381RowInfo row = _rowCache.GetRow(nextRow); 399RowInfo row = _rowCache.GetRow(previousRow); 1198RowInfo currentRow = _rowCache.GetRow(row); 1405RowInfo firstRow = _rowCache.GetRow(newFirstVisibleRow); 1407RowInfo lastRow = _rowCache.GetRow(newFirstVisibleRow + newVisibleRowCount - 1); 1430RowInfo currentRow = _rowCache.GetRow(i); 1601RowInfo currentRow = _rowCache.GetRow(row); 2299private bool RowIsClean(RowInfo row) 2319private void EnsureFit(RowInfo pivotRow) 2352private void ApplyViewParameters(RowInfo pivotRow) 2377private double CalculateScaleFactor(RowInfo pivotRow) 2690private double GetHorizontalOffsetForPage(RowInfo row, int pageNumber) 2900RowInfo newRow = _rowCache.GetRowForPageNumber(_savedPivotRow.FirstPage); 2981RowInfo pivotRow = _rowCache.GetRow(args.PivotRowIndex); 3182private RowInfo _savedPivotRow;
MS\Internal\Documents\RowCache.cs (30)
36_rowCache = new List<RowInfo>(_defaultRowCacheSize); 244public RowInfo GetRow(int index) 258public RowInfo GetRowForPageNumber(int pageNumber) 283RowInfo rowInfo = _rowCache[i]; 460RowInfo currentRow = _rowCache[i]; 609RowInfo lastRow = _rowCache[_rowCache.Count - 1]; 665RowInfo pivotRow = CreateFixedRow(pivotPage, columns); 678List<RowInfo> tempRows = new List<RowInfo>(pivotPage / columns); 683RowInfo newRow = CreateDynamicRow(currentPage - 1, pivotRowWidth, false /* backwards */); 707RowInfo newRow = CreateDynamicRow(currentPage, pivotRowWidth, true /*forwards */); 725private RowInfo CreateDynamicRow(int startPage, double rowWidth, bool createForward) 734RowInfo newRow = new RowInfo(); 816RowInfo newRow = CreateFixedRow(i, columns); 830private RowInfo CreateFixedRow(int startPage, int columns) 840RowInfo newRow = new RowInfo(); 890RowInfo lastRow = _rowCache[_rowCache.Count - 1]; 899RowInfo pivotRow = GetRow(_pivotRowIndex); 934RowInfo newRow = new RowInfo(); 962private void AddRow(RowInfo newRow) 975RowInfo lastRow = _rowCache[_rowCache.Count - 1]; 1015RowInfo currentRow = _rowCache[rowIndex]; 1018RowInfo 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(); 1314private List<RowInfo> _rowCache;