6 implementations of ExtentHeight
PresentationFramework (6)
src\Framework\MS\Internal\Documents\DocumentGrid.cs (1)
564public double ExtentHeight
src\Framework\MS\Internal\Documents\FlowDocumentView.cs (1)
653double IScrollInfo.ExtentHeight
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
312double IScrollInfo.ExtentHeight
src\Framework\System\Windows\Controls\Primitives\ScrollContentPresenter.cs (1)
270public double ExtentHeight
src\Framework\System\Windows\Controls\Stack.cs (1)
412public double ExtentHeight
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (1)
1829public double ExtentHeight
15 references to ExtentHeight
PresentationFramework (15)
src\Framework\MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (1)
1614pageBounds = new Rect(-scrollInfo.HorizontalOffset, -scrollInfo.VerticalOffset, scrollInfo.ExtentWidth, scrollInfo.ExtentHeight);
src\Framework\MS\Internal\Documents\DocumentPageTextView.cs (1)
639double extentHeight = scrollInfo.ExtentHeight;
src\Framework\MS\Internal\Documents\FlowDocumentView.cs (1)
651/// <see cref="IScrollInfo.ExtentHeight"/>
src\Framework\MS\Internal\Documents\ScrollData.cs (1)
309/// <see cref="IScrollInfo.ExtentHeight"/>
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
310/// <see cref="IScrollInfo.ExtentHeight"/>
src\Framework\MS\Internal\LayoutDump.cs (1)
550Size extent = new Size(isi.ExtentWidth, isi.ExtentHeight);
src\Framework\System\Windows\Controls\DocumentViewer.cs (1)
1343SetValue(ExtentHeightPropertyKey, _documentScrollInfo.ExtentHeight);
src\Framework\System\Windows\Controls\Primitives\IScrollInfo.cs (1)
108/// An implementation may coerce this value into a valid range, typically inclusively between 0 and <see cref="ExtentHeight" /> less <see cref="ViewportHeight" />.
src\Framework\System\Windows\Controls\ScrollViewer.cs (6)
271extent = ScrollInfo.ExtentHeight; 292|| !DoubleUtil.AreClose(ExtentHeight, ScrollInfo.ExtentHeight)) 1233bool makeVerticalBarVisible = vsbAuto && DoubleUtil.GreaterThan(isi.ExtentHeight, isi.ViewportHeight); 1278bool makeVerticalBarVisible2 = !makeVerticalBarVisible && DoubleUtil.GreaterThan(isi.ExtentHeight, isi.ViewportHeight); 2415if (ScrollInfo != null && !DoubleUtil.AreClose(oldExtentHeight, ScrollInfo.ExtentHeight)) 2417_yExtent = ScrollInfo.ExtentHeight;
src\Framework\System\Windows\Controls\TextBox.cs (1)
368height = ((IScrollInfo)this.RenderScope).ExtentHeight;