2 writes to _offset
PresentationFramework (2)
MS\Internal\Documents\ScrollData.cs (2)
238
_offset
= new Vector();
384
_offset
= value;
21 references to _offset
PresentationFramework (21)
MS\Internal\Documents\ScrollData.cs (21)
32
SetVerticalOffset(owner,
_offset
.Y - ScrollViewer._scrollLineDelta);
40
SetVerticalOffset(owner,
_offset
.Y + ScrollViewer._scrollLineDelta);
48
SetHorizontalOffset(owner,
_offset
.X - ScrollViewer._scrollLineDelta);
56
SetHorizontalOffset(owner,
_offset
.X + ScrollViewer._scrollLineDelta);
64
SetVerticalOffset(owner,
_offset
.Y - _viewport.Height);
72
SetVerticalOffset(owner,
_offset
.Y + _viewport.Height);
80
SetHorizontalOffset(owner,
_offset
.X - _viewport.Width);
88
SetHorizontalOffset(owner,
_offset
.X + _viewport.Width);
96
SetVerticalOffset(owner,
_offset
.Y - ScrollViewer._mouseWheelDelta);
104
SetVerticalOffset(owner,
_offset
.Y + ScrollViewer._mouseWheelDelta);
112
SetHorizontalOffset(owner,
_offset
.X - ScrollViewer._mouseWheelDelta);
120
SetHorizontalOffset(owner,
_offset
.X + ScrollViewer._mouseWheelDelta);
134
if (!DoubleUtil.AreClose(offset,
_offset
.X))
136
_offset
.X = offset;
156
if (!DoubleUtil.AreClose(offset,
_offset
.Y))
158
_offset
.Y = offset;
186
Rect viewport = new Rect(
_offset
.X,
_offset
.Y, _viewport.Width, _viewport.Height);
348
return
_offset
.X;
359
return
_offset
.Y;
379
return
_offset
;