2 writes to _offset
PresentationFramework (2)
MS\Internal\Documents\ScrollData.cs (2)
231
_offset
= new Vector();
377
_offset
= value;
21 references to _offset
PresentationFramework (21)
MS\Internal\Documents\ScrollData.cs (21)
31
SetVerticalOffset(owner,
_offset
.Y - ScrollViewer._scrollLineDelta);
39
SetVerticalOffset(owner,
_offset
.Y + ScrollViewer._scrollLineDelta);
47
SetHorizontalOffset(owner,
_offset
.X - ScrollViewer._scrollLineDelta);
55
SetHorizontalOffset(owner,
_offset
.X + ScrollViewer._scrollLineDelta);
63
SetVerticalOffset(owner,
_offset
.Y - _viewport.Height);
71
SetVerticalOffset(owner,
_offset
.Y + _viewport.Height);
79
SetHorizontalOffset(owner,
_offset
.X - _viewport.Width);
87
SetHorizontalOffset(owner,
_offset
.X + _viewport.Width);
95
SetVerticalOffset(owner,
_offset
.Y - ScrollViewer._mouseWheelDelta);
103
SetVerticalOffset(owner,
_offset
.Y + ScrollViewer._mouseWheelDelta);
111
SetHorizontalOffset(owner,
_offset
.X - ScrollViewer._mouseWheelDelta);
119
SetHorizontalOffset(owner,
_offset
.X + ScrollViewer._mouseWheelDelta);
133
if (!DoubleUtil.AreClose(offset,
_offset
.X))
135
_offset
.X = offset;
152
if (!DoubleUtil.AreClose(offset,
_offset
.Y))
154
_offset
.Y = offset;
179
Rect viewport = new Rect(
_offset
.X,
_offset
.Y, _viewport.Width, _viewport.Height);
341
return
_offset
.X;
352
return
_offset
.Y;
372
return
_offset
;