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