2 writes to _offset
PresentationFramework (2)
MS\Internal\Documents\ScrollData.cs (2)
240
_offset
= new Vector();
386
_offset
= value;
21 references to _offset
PresentationFramework (21)
MS\Internal\Documents\ScrollData.cs (21)
34
SetVerticalOffset(owner,
_offset
.Y - ScrollViewer._scrollLineDelta);
42
SetVerticalOffset(owner,
_offset
.Y + ScrollViewer._scrollLineDelta);
50
SetHorizontalOffset(owner,
_offset
.X - ScrollViewer._scrollLineDelta);
58
SetHorizontalOffset(owner,
_offset
.X + ScrollViewer._scrollLineDelta);
66
SetVerticalOffset(owner,
_offset
.Y - _viewport.Height);
74
SetVerticalOffset(owner,
_offset
.Y + _viewport.Height);
82
SetHorizontalOffset(owner,
_offset
.X - _viewport.Width);
90
SetHorizontalOffset(owner,
_offset
.X + _viewport.Width);
98
SetVerticalOffset(owner,
_offset
.Y - ScrollViewer._mouseWheelDelta);
106
SetVerticalOffset(owner,
_offset
.Y + ScrollViewer._mouseWheelDelta);
114
SetHorizontalOffset(owner,
_offset
.X - ScrollViewer._mouseWheelDelta);
122
SetHorizontalOffset(owner,
_offset
.X + ScrollViewer._mouseWheelDelta);
136
if (!DoubleUtil.AreClose(offset,
_offset
.X))
138
_offset
.X = offset;
158
if (!DoubleUtil.AreClose(offset,
_offset
.Y))
160
_offset
.Y = offset;
188
Rect viewport = new Rect(
_offset
.X,
_offset
.Y, _viewport.Width, _viewport.Height);
350
return
_offset
.X;
361
return
_offset
.Y;
381
return
_offset
;