Implemented interface member:
property
ViewportHeight
System.Windows.Controls.Primitives.IScrollInfo.ViewportHeight
16 references to ViewportHeight
PresentationFramework (16)
MS\Internal\Documents\DocumentGrid.cs (15)
166
SetVerticalOffsetInternal(VerticalOffset -
ViewportHeight
);
174
SetVerticalOffsetInternal(VerticalOffset +
ViewportHeight
);
620
/// Valid values are inclusively between 0 and <see cref="ExtentHeight" /> less <see cref="
ViewportHeight
" />.
627
double clippedVerticalOffset = Math.Min(_verticalOffset, ExtentHeight -
ViewportHeight
);
1629
if (ExtentHeight >
ViewportHeight
)
1642
(
ViewportHeight
- ExtentHeight) / 2.0 + (VerticalPageSpacing / 2.0);
1855
ViewportHeight
);
1863
SetVerticalOffsetInternal(translatedRect.Y - (
ViewportHeight
/ 2.0));
1879
ViewportHeight
);
1900
else if (r.Y + r.Height > VerticalOffset +
ViewportHeight
)
1902
SetVerticalOffsetInternal(VerticalOffset + ((r.Y + r.Height) - (VerticalOffset +
ViewportHeight
)));
2224
double viewportAspect = ViewportWidth /
ViewportHeight
;
2418
double compensatedViewportHeight =
ViewportHeight
- VerticalPageSpacing;
2460
double thumbnailCompensatedViewportHeight =
ViewportHeight
- VerticalPageSpacing * _rowCache.RowCount;
3063
return (ViewportWidth != 0.0 &&
ViewportHeight
!= 0.0);
MS\Internal\Documents\DocumentGridContextMenu.cs (1)
109
uiScopeMouseDownPoint = new Point(.5 * documentGrid.ViewportWidth, .5 * documentGrid.
ViewportHeight
);