7 writes to Y
PresentationCore (7)
MS\Internal\Ink\StrokeNodeEnumerator.cs (1)
134sp.Y = lastStylusPoint.Y;
System\Windows\Ink\Stroke.cs (2)
950tempEnd.Y = endPoint.Y; 955tempBegin.Y = begPoint.Y;
System\Windows\Input\Stylus\Common\StylusPointCollection.cs (2)
395stylusPoint.Y = point.Y; 429stylusPoint.Y = point.Y;
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
885flickPoint.Y = report.GestureY;
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1649stylusPoint.Y = report.GestureY;
16 references to Y
PresentationCore (16)
MS\Internal\Ink\CuspData.cs (2)
57!DoubleUtil.AreClose(stylusPoints[i].Y, stylusPoints[i - 1].Y))
MS\Internal\Ink\StrokeNodeEnumerator.cs (1)
134sp.Y = lastStylusPoint.Y;
System\Windows\Ink\Stroke.cs (3)
995double yDistance = p2.Y - p1.Y; 1000return new Point(p1.X + xFDistance, p1.Y + yFDistance);
System\Windows\Input\Stylus\Common\StylusPoint.cs (2)
435return new Point(stylusPoint.X, stylusPoint.Y); 444return new Point(this.X, this.Y);
System\Windows\Input\Stylus\Common\StylusPointCollection.cs (6)
340points[i] = new Point(stylusPoints[i].X, stylusPoints[i].Y); 392point.Y = stylusPoint.Y; 426point.Y = stylusPoint.Y; 486double yCoord = stylusPoint.Y; 534output[x + 1] = (int)Math.Round(stylusPoint.Y * StrokeCollectionSerializer.AvalonToHimetricMultiplier); 603output[1][b] = (int)Math.Round(stylusPoint.Y * StrokeCollectionSerializer.AvalonToHimetricMultiplier);
System\Windows\Input\Stylus\Common\StylusTouchDeviceBase.cs (1)
110Point position = new Point(stylusPoint.X, stylusPoint.Y);
System\Windows\Input\Stylus\Pointer\PointerInteractionEngine.cs (1)
466Convert.ToInt32(_stylusDevice.RawStylusPoint.Y),