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