9 implementations of ExtentWidth
PresentationFramework (6)
MS\Internal\Documents\DocumentGrid.cs (1)
534
public double
ExtentWidth
MS\Internal\Documents\FlowDocumentView.cs (1)
637
double IScrollInfo.
ExtentWidth
MS\Internal\Documents\TextBoxView.cs (1)
283
double IScrollInfo.
ExtentWidth
System\Windows\Controls\Primitives\ScrollContentPresenter.cs (1)
257
public double
ExtentWidth
System\Windows\Controls\Stack.cs (1)
394
public double
ExtentWidth
System\Windows\Controls\VirtualizingStackPanel.cs (1)
1866
public double
ExtentWidth
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGalleryCategoriesPanel.cs (1)
908
public double
ExtentWidth
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonTabHeadersPanel.cs (1)
866
public double
ExtentWidth
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonTabsPanel.cs (1)
104
public double
ExtentWidth
13 references to ExtentWidth
PresentationFramework (13)
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (1)
1598
pageBounds = new Rect(-scrollInfo.HorizontalOffset, -scrollInfo.VerticalOffset, scrollInfo.
ExtentWidth
, scrollInfo.ExtentHeight);
MS\Internal\Documents\FlowDocumentView.cs (1)
635
/// <see cref="IScrollInfo.
ExtentWidth
"/>
MS\Internal\Documents\ScrollData.cs (1)
290
/// <see cref="IScrollInfo.
ExtentWidth
"/>
MS\Internal\Documents\TextBoxView.cs (1)
281
/// <see cref="IScrollInfo.
ExtentWidth
"/>
MS\Internal\LayoutDump.cs (1)
547
Size extent = new Size(isi.
ExtentWidth
, isi.ExtentHeight);
System\Windows\Controls\DocumentViewer.cs (1)
1322
SetValue(ExtentWidthPropertyKey, _documentScrollInfo.
ExtentWidth
);
System\Windows\Controls\Primitives\IScrollInfo.cs (1)
98
/// An implementation may coerce this value into a valid range, typically inclusively between 0 and <see cref="
ExtentWidth
" /> less <see cref="ViewportWidth" />.
System\Windows\Controls\ScrollViewer.cs (6)
255
double extent = ScrollInfo.
ExtentWidth
;
288
|| !DoubleUtil.AreClose(ExtentWidth, ScrollInfo.
ExtentWidth
)
1205
bool makeHorizontalBarVisible = hsbAuto && DoubleUtil.GreaterThan(isi.
ExtentWidth
, isi.ViewportWidth);
1250
bool makeHorizontalBarVisible2 = !makeHorizontalBarVisible && DoubleUtil.GreaterThan(isi.
ExtentWidth
, isi.ViewportWidth);
2369
if (ScrollInfo != null && !DoubleUtil.AreClose(oldExtentWidth, ScrollInfo.
ExtentWidth
))
2371
_xExtent = ScrollInfo.
ExtentWidth
;