6 implementations of ExtentWidth
PresentationFramework (6)
src\Framework\MS\Internal\Documents\DocumentGrid.cs (1)
553
public double
ExtentWidth
src\Framework\MS\Internal\Documents\FlowDocumentView.cs (1)
642
double IScrollInfo.
ExtentWidth
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
285
double IScrollInfo.
ExtentWidth
src\Framework\System\Windows\Controls\Primitives\ScrollContentPresenter.cs (1)
263
public double
ExtentWidth
src\Framework\System\Windows\Controls\Stack.cs (1)
400
public double
ExtentWidth
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (1)
1817
public double
ExtentWidth
13 references to ExtentWidth
PresentationFramework (13)
src\Framework\MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (1)
1614
pageBounds = 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)
550
Size extent = new Size(isi.
ExtentWidth
, isi.ExtentHeight);
src\Framework\System\Windows\Controls\DocumentViewer.cs (1)
1342
SetValue(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)
258
double extent = ScrollInfo.
ExtentWidth
;
291
|| !DoubleUtil.AreClose(ExtentWidth, ScrollInfo.
ExtentWidth
)
1232
bool makeHorizontalBarVisible = hsbAuto && DoubleUtil.GreaterThan(isi.
ExtentWidth
, isi.ViewportWidth);
1277
bool makeHorizontalBarVisible2 = !makeHorizontalBarVisible && DoubleUtil.GreaterThan(isi.
ExtentWidth
, isi.ViewportWidth);
2408
if (ScrollInfo != null && !DoubleUtil.AreClose(oldExtentWidth, ScrollInfo.
ExtentWidth
))
2410
_xExtent = ScrollInfo.
ExtentWidth
;