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
);
1617
if (ExtentHeight >
ViewportHeight
)
1630
(
ViewportHeight
- ExtentHeight) / 2.0 + (VerticalPageSpacing / 2.0);
1844
ViewportHeight
);
1852
SetVerticalOffsetInternal(translatedRect.Y - (
ViewportHeight
/ 2.0));
1868
ViewportHeight
);
1889
else if (r.Y + r.Height > VerticalOffset +
ViewportHeight
)
1891
SetVerticalOffsetInternal(VerticalOffset + ((r.Y + r.Height) - (VerticalOffset +
ViewportHeight
)));
2210
double viewportAspect = ViewportWidth /
ViewportHeight
;
2401
double compensatedViewportHeight =
ViewportHeight
- VerticalPageSpacing;
2443
double thumbnailCompensatedViewportHeight =
ViewportHeight
- VerticalPageSpacing * _rowCache.RowCount;
3042
return (ViewportWidth != 0.0 &&
ViewportHeight
!= 0.0);
MS\Internal\Documents\DocumentGridContextMenu.cs (1)
102
uiScopeMouseDownPoint = new Point(.5 * documentGrid.ViewportWidth, .5 * documentGrid.
ViewportHeight
);