19 references to ExtentHeight
PresentationFramework (19)
System\Windows\Automation\Peers\ScrollBarAutomationPeer.cs (1)
70
verticalPercent = (val / (sv.
ExtentHeight
- sv.ViewportHeight)) * 100;
System\Windows\Automation\Peers\ScrollViewerAutomationPeer.cs (5)
166
owner.ScrollToVerticalOffset((owner.
ExtentHeight
- owner.ViewportHeight) * (double)verticalPercent * 0.01);
194
return (double)(owner.VerticalOffset * 100.0 / (owner.
ExtentHeight
- owner.ViewportHeight));
221
if (owner.ScrollInfo == null || DoubleUtil.IsZero(owner.
ExtentHeight
)) { return 100f; }
222
return Math.Min(100.0, (double)(owner.ViewportHeight * 100.0 / owner.
ExtentHeight
));
275
return owner.ScrollInfo != null && DoubleUtil.GreaterThan(owner.
ExtentHeight
, owner.ViewportHeight);
System\Windows\Controls\ItemsControl.cs (1)
2082
(ScrollHost.VerticalOffset > ScrollHost.
ExtentHeight
||
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
572
return (this.ScrollViewer != null) ? this.ScrollViewer.
ExtentHeight
: 0.0;
System\Windows\Controls\ScrollChangedEventArgs.cs (2)
126
/// <seealso cref="System.Windows.Controls.ScrollViewer.
ExtentHeight
"/>
142
/// <seealso cref="System.Windows.Controls.ScrollViewer.
ExtentHeight
"/>
System\Windows\Controls\ScrollViewer.cs (6)
280
|| !DoubleUtil.AreClose(
ExtentHeight
, ScrollInfo.ExtentHeight))
408
get { return Math.Max(0.0,
ExtentHeight
- ViewportHeight); }
700
/// DependencyProperty for <see cref="
ExtentHeight
" /> property.
2319
double oldExtentHeight =
ExtentHeight
;
2400
new Size(ExtentWidth,
ExtentHeight
),
2401
new Vector(ExtentWidth - oldExtentWidth,
ExtentHeight
- oldExtentHeight),
System\Windows\Controls\TreeView.cs (2)
670
if(DoubleUtil.GreaterThan(scroller.
ExtentHeight
, scroller.ViewportHeight))
682
if(DoubleUtil.GreaterThan(scroller.
ExtentHeight
, scroller.ViewportHeight))
System\windows\Documents\CaretElement.cs (1)
412
scroller.ScrollToVerticalOffset(Math.Min(scroller.
ExtentHeight
, scroller.VerticalOffset + deltaToScroll + scrollerHeight / 4));