9 implementations of ExtentHeight
PresentationFramework (6)
MS\Internal\Documents\DocumentGrid.cs (1)
545
public double
ExtentHeight
MS\Internal\Documents\FlowDocumentView.cs (1)
648
double IScrollInfo.
ExtentHeight
MS\Internal\Documents\TextBoxView.cs (1)
310
double IScrollInfo.
ExtentHeight
System\Windows\Controls\Primitives\ScrollContentPresenter.cs (1)
264
public double
ExtentHeight
System\Windows\Controls\Stack.cs (1)
406
public double
ExtentHeight
System\Windows\Controls\VirtualizingStackPanel.cs (1)
1878
public double
ExtentHeight
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGalleryCategoriesPanel.cs (1)
920
public double
ExtentHeight
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonTabHeadersPanel.cs (1)
1035
public double
ExtentHeight
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonTabsPanel.cs (1)
273
public double
ExtentHeight
15 references to ExtentHeight
PresentationFramework (15)
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (1)
1598
pageBounds = new Rect(-scrollInfo.HorizontalOffset, -scrollInfo.VerticalOffset, scrollInfo.ExtentWidth, scrollInfo.
ExtentHeight
);
MS\Internal\Documents\DocumentPageTextView.cs (1)
637
double extentHeight = scrollInfo.
ExtentHeight
;
MS\Internal\Documents\FlowDocumentView.cs (1)
646
/// <see cref="IScrollInfo.
ExtentHeight
"/>
MS\Internal\Documents\ScrollData.cs (1)
306
/// <see cref="IScrollInfo.
ExtentHeight
"/>
MS\Internal\Documents\TextBoxView.cs (1)
308
/// <see cref="IScrollInfo.
ExtentHeight
"/>
MS\Internal\LayoutDump.cs (1)
547
Size extent = new Size(isi.ExtentWidth, isi.
ExtentHeight
);
System\Windows\Controls\DocumentViewer.cs (1)
1323
SetValue(ExtentHeightPropertyKey, _documentScrollInfo.
ExtentHeight
);
System\Windows\Controls\Primitives\IScrollInfo.cs (1)
104
/// An implementation may coerce this value into a valid range, typically inclusively between 0 and <see cref="
ExtentHeight
" /> less <see cref="ViewportHeight" />.
System\Windows\Controls\ScrollViewer.cs (6)
268
extent = ScrollInfo.
ExtentHeight
;
289
|| !DoubleUtil.AreClose(ExtentHeight, ScrollInfo.
ExtentHeight
))
1206
bool makeVerticalBarVisible = vsbAuto && DoubleUtil.GreaterThan(isi.
ExtentHeight
, isi.ViewportHeight);
1251
bool makeVerticalBarVisible2 = !makeVerticalBarVisible && DoubleUtil.GreaterThan(isi.
ExtentHeight
, isi.ViewportHeight);
2376
if (ScrollInfo != null && !DoubleUtil.AreClose(oldExtentHeight, ScrollInfo.
ExtentHeight
))
2378
_yExtent = ScrollInfo.
ExtentHeight
;
System\Windows\Controls\TextBox.cs (1)
349
height = ((IScrollInfo)this.RenderScope).
ExtentHeight
;