Implemented interface member:
property
ViewportHeight
System.Windows.Controls.Primitives.IScrollInfo.ViewportHeight
16 references to ViewportHeight
PresentationFramework (16)
MS\Internal\Documents\DocumentGrid.cs (15)
158
SetVerticalOffsetInternal(VerticalOffset -
ViewportHeight
);
166
SetVerticalOffsetInternal(VerticalOffset +
ViewportHeight
);
612
/// Valid values are inclusively between 0 and <see cref="ExtentHeight" /> less <see cref="
ViewportHeight
" />.
619
double clippedVerticalOffset = Math.Min(_verticalOffset, ExtentHeight -
ViewportHeight
);
1620
if (ExtentHeight >
ViewportHeight
)
1633
(
ViewportHeight
- ExtentHeight) / 2.0 + (VerticalPageSpacing / 2.0);
1847
ViewportHeight
);
1855
SetVerticalOffsetInternal(translatedRect.Y - (
ViewportHeight
/ 2.0));
1871
ViewportHeight
);
1892
else if (r.Y + r.Height > VerticalOffset +
ViewportHeight
)
1894
SetVerticalOffsetInternal(VerticalOffset + ((r.Y + r.Height) - (VerticalOffset +
ViewportHeight
)));
2213
double viewportAspect = ViewportWidth /
ViewportHeight
;
2404
double compensatedViewportHeight =
ViewportHeight
- VerticalPageSpacing;
2446
double thumbnailCompensatedViewportHeight =
ViewportHeight
- VerticalPageSpacing * _rowCache.RowCount;
3045
return (ViewportWidth != 0.0 &&
ViewportHeight
!= 0.0);
MS\Internal\Documents\DocumentGridContextMenu.cs (1)
102
uiScopeMouseDownPoint = new Point(.5 * documentGrid.ViewportWidth, .5 * documentGrid.
ViewportHeight
);