5 instantiations of RowInfo
PresentationFramework (5)
src\Framework\MS\Internal\Documents\RowCache.cs (5)
767
RowInfo newRow = new
RowInfo
();
884
RowInfo newRow = new
RowInfo
();
978
RowInfo newRow = new
RowInfo
();
1063
RowInfo updatedRow = new
RowInfo
();
1174
RowInfo updatedRow = new
RowInfo
();
46 references to RowInfo
PresentationFramework (46)
src\Framework\MS\Internal\Documents\DocumentGrid.cs (16)
364
RowInfo
scrolledRow = _rowCache.GetRowForPageNumber(pageNumber);
390
RowInfo
row = _rowCache.GetRow(nextRow);
408
RowInfo
row = _rowCache.GetRow(previousRow);
1222
RowInfo
currentRow = _rowCache.GetRow(row);
1433
RowInfo
firstRow = _rowCache.GetRow(newFirstVisibleRow);
1435
RowInfo
lastRow = _rowCache.GetRow(newFirstVisibleRow + newVisibleRowCount - 1);
1459
RowInfo
currentRow = _rowCache.GetRow(i);
1631
RowInfo
currentRow = _rowCache.GetRow(row);
2340
private bool RowIsClean(
RowInfo
row)
2360
private void EnsureFit(
RowInfo
pivotRow)
2394
private void ApplyViewParameters(
RowInfo
pivotRow)
2419
private double CalculateScaleFactor(
RowInfo
pivotRow)
2733
private double GetHorizontalOffsetForPage(
RowInfo
row, int pageNumber )
2952
RowInfo
newRow = _rowCache.GetRowForPageNumber(_savedPivotRow.FirstPage);
3033
RowInfo
pivotRow = _rowCache.GetRow(args.PivotRowIndex);
3234
private
RowInfo
_savedPivotRow;
src\Framework\MS\Internal\Documents\RowCache.cs (30)
44
_rowCache = new List<
RowInfo
>(_defaultRowCacheSize);
252
public
RowInfo
GetRow(int index)
268
public
RowInfo
GetRowForPageNumber(int pageNumber)
297
RowInfo
rowInfo = _rowCache[i];
479
RowInfo
currentRow = _rowCache[i];
634
RowInfo
lastRow = _rowCache[_rowCache.Count-1];
695
RowInfo
pivotRow = CreateFixedRow(pivotPage, columns);
708
List<
RowInfo
> tempRows = new List<
RowInfo
>(pivotPage / columns);
713
RowInfo
newRow = CreateDynamicRow(currentPage - 1, pivotRowWidth, false /* backwards */);
737
RowInfo
newRow = CreateDynamicRow(currentPage, pivotRowWidth, true /*forwards */);
755
private
RowInfo
CreateDynamicRow(int startPage, double rowWidth, bool createForward)
767
RowInfo
newRow = new RowInfo();
854
RowInfo
newRow = CreateFixedRow(i, columns);
868
private
RowInfo
CreateFixedRow(int startPage, int columns)
884
RowInfo
newRow = new RowInfo();
934
RowInfo
lastRow = _rowCache[_rowCache.Count - 1];
943
RowInfo
pivotRow = GetRow(_pivotRowIndex);
978
RowInfo
newRow = new RowInfo();
1007
private void AddRow(
RowInfo
newRow)
1020
RowInfo
lastRow = _rowCache[_rowCache.Count - 1];
1060
RowInfo
currentRow = _rowCache[rowIndex];
1063
RowInfo
updatedRow = new RowInfo();
1097
private void UpdateRow(int index,
RowInfo
newRow)
1112
RowInfo
oldRowInfo = _rowCache[index];
1125
RowInfo
row = _rowCache[i];
1152
RowInfo
row = _rowCache[i];
1170
RowInfo
oldRow = GetRow(rowIndex);
1174
RowInfo
updatedRow = new RowInfo();
1359
private List<
RowInfo
> _rowCache;