1 write to _rowCache
PresentationFramework (1)
src\Framework\MS\Internal\Documents\DocumentGrid.cs (1)
2536
_rowCache
= new RowCache();
41 references to _rowCache
PresentationFramework (41)
src\Framework\MS\Internal\Documents\DocumentGrid.cs (41)
343
else if (pageNumber >= _pageCache.PageCount ||
_rowCache
.RowCount == 0)
346
if (_pageCache.IsPaginationCompleted &&
_rowCache
.HasValidLayout)
364
RowInfo scrolledRow =
_rowCache
.GetRowForPageNumber(pageNumber);
387
if (nextRow <
_rowCache
.RowCount)
390
RowInfo row =
_rowCache
.GetRow(nextRow);
405
if (previousRow >= 0 && previousRow <
_rowCache
.RowCount)
408
RowInfo row =
_rowCache
.GetRow(previousRow);
557
return
_rowCache
.ExtentWidth;
568
return
_rowCache
.ExtentHeight;
799
return
_rowCache
.Scale;
823
return
_rowCache
.VerticalPageSpacing;
833
_rowCache
.VerticalPageSpacing = value;
845
return
_rowCache
.HorizontalPageSpacing;
855
_rowCache
.HorizontalPageSpacing = value;
1155
if (_firstVisiblePageNumber < _pageCache.PageCount &&
_rowCache
.HasValidLayout)
1159
ApplyViewParameters(
_rowCache
.GetRowForPageNumber(_firstVisiblePageNumber));
1222
RowInfo currentRow =
_rowCache
.GetRow(row);
1372
if (
_rowCache
.RowCount == 0)
1391
_rowCache
.GetVisibleRowIndices(offset,
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);
1644
if (row ==
_rowCache
.RowCount -1 && !_pageCache.DynamicPageSizes)
1690
_rowCache
.RowCount == 0 ||
1810
if (!
_rowCache
.HasValidLayout ||
2048
_rowCache
.Scale = scale;
2151
_rowCache
.RecalcRows(pivotPage, _documentLayout.Columns);
2366
double newScale = neededScaleFactor *
_rowCache
.Scale;
2409
double newScale = scaleFactor *
_rowCache
.Scale;
2501
double thumbnailCompensatedExtentHeight = ExtentHeight - VerticalPageSpacing *
_rowCache
.RowCount;
2502
double thumbnailCompensatedViewportHeight = ViewportHeight - VerticalPageSpacing *
_rowCache
.RowCount;
2537
_rowCache
.PageCache = _pageCache;
2538
_rowCache
.RowCacheChanged += new RowCacheChangedEventHandler(OnRowCacheChanged);
2539
_rowCache
.RowLayoutCompleted += new RowLayoutCompletedEventHandler(OnRowLayoutCompleted);
2897
if (
_rowCache
.HasValidLayout)
2899
EnsureFit(
_rowCache
.GetRowForPageNumber(FirstVisiblePageNumber));
2950
if (_savedPivotRow.FirstPage <
_rowCache
.RowCount)
2952
RowInfo newRow =
_rowCache
.GetRowForPageNumber(_savedPivotRow.FirstPage);
3027
if (args.PivotRowIndex >=
_rowCache
.RowCount)
3033
RowInfo pivotRow =
_rowCache
.GetRow(args.PivotRowIndex);