2 writes to HorizontalOffset
PresentationFramework (2)
src\Framework\System\Windows\Controls\DocumentViewer.cs (2)
1349HorizontalOffset = _documentScrollInfo.HorizontalOffset; 1429HorizontalOffset = Math.Max(horizontalOffset, 0.0);
4 references to HorizontalOffset
PresentationFramework (4)
src\Framework\System\Windows\Controls\DocumentViewer.cs (4)
1347if (HorizontalOffset != _documentScrollInfo.HorizontalOffset) 1406double horizontalOffset = HorizontalOffset; 2511dv.SetValue(CanMoveRightPropertyKey, dv.HorizontalOffset < ((double) e.NewValue - dv.ViewportWidth)); 2528dv.SetValue(CanMoveRightPropertyKey, dv.HorizontalOffset < (dv.ExtentWidth - (double) e.NewValue));