6 implementations of ExtentWidth
PresentationFramework (6)
src\Framework\MS\Internal\Documents\DocumentGrid.cs (1)
553public double ExtentWidth
src\Framework\MS\Internal\Documents\FlowDocumentView.cs (1)
642double IScrollInfo.ExtentWidth
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
285double IScrollInfo.ExtentWidth
src\Framework\System\Windows\Controls\Primitives\ScrollContentPresenter.cs (1)
263public double ExtentWidth
src\Framework\System\Windows\Controls\Stack.cs (1)
400public double ExtentWidth
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (1)
1817public double ExtentWidth
13 references to ExtentWidth
PresentationFramework (13)
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\FlowDocumentView.cs (1)
640/// <see cref="IScrollInfo.ExtentWidth"/>
src\Framework\MS\Internal\Documents\ScrollData.cs (1)
293/// <see cref="IScrollInfo.ExtentWidth"/>
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
283/// <see cref="IScrollInfo.ExtentWidth"/>
src\Framework\MS\Internal\LayoutDump.cs (1)
550Size extent = new Size(isi.ExtentWidth, isi.ExtentHeight);
src\Framework\System\Windows\Controls\DocumentViewer.cs (1)
1342SetValue(ExtentWidthPropertyKey, _documentScrollInfo.ExtentWidth);
src\Framework\System\Windows\Controls\Primitives\IScrollInfo.cs (1)
102/// An implementation may coerce this value into a valid range, typically inclusively between 0 and <see cref="ExtentWidth" /> less <see cref="ViewportWidth" />.
src\Framework\System\Windows\Controls\ScrollViewer.cs (6)
258double extent = ScrollInfo.ExtentWidth; 291|| !DoubleUtil.AreClose(ExtentWidth, ScrollInfo.ExtentWidth) 1232bool makeHorizontalBarVisible = hsbAuto && DoubleUtil.GreaterThan(isi.ExtentWidth, isi.ViewportWidth); 1277bool makeHorizontalBarVisible2 = !makeHorizontalBarVisible && DoubleUtil.GreaterThan(isi.ExtentWidth, isi.ViewportWidth); 2408if (ScrollInfo != null && !DoubleUtil.AreClose(oldExtentWidth, ScrollInfo.ExtentWidth)) 2410_xExtent = ScrollInfo.ExtentWidth;