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