7 writes to Y
PresentationCore (7)
MS\Internal\Ink\StrokeNodeEnumerator.cs (1)
127sp.Y = lastStylusPoint.Y;
System\Windows\Ink\Stroke.cs (2)
935tempEnd.Y = endPoint.Y; 940tempBegin.Y = begPoint.Y;
System\Windows\Input\Stylus\Common\StylusPointCollection.cs (2)
387stylusPoint.Y = point.Y; 421stylusPoint.Y = point.Y;
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
860flickPoint.Y = report.GestureY;
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1615stylusPoint.Y = report.GestureY;
16 references to Y
PresentationCore (16)
MS\Internal\Ink\CuspData.cs (2)
52!DoubleUtil.AreClose(stylusPoints[i].Y, stylusPoints[i - 1].Y))
MS\Internal\Ink\StrokeNodeEnumerator.cs (1)
127sp.Y = lastStylusPoint.Y;
System\Windows\Ink\Stroke.cs (3)
980double yDistance = p2.Y - p1.Y; 985return new Point(p1.X + xFDistance, p1.Y + yFDistance);
System\Windows\Input\Stylus\Common\StylusPoint.cs (2)
425return new Point(stylusPoint.X, stylusPoint.Y); 434return new Point(this.X, this.Y);
System\Windows\Input\Stylus\Common\StylusPointCollection.cs (6)
332points[i] = new Point(stylusPoints[i].X, stylusPoints[i].Y); 384point.Y = stylusPoint.Y; 418point.Y = stylusPoint.Y; 478double yCoord = stylusPoint.Y; 526output[x + 1] = (int)Math.Round(stylusPoint.Y * StrokeCollectionSerializer.AvalonToHimetricMultiplier); 595output[1][b] = (int)Math.Round(stylusPoint.Y * StrokeCollectionSerializer.AvalonToHimetricMultiplier);
System\Windows\Input\Stylus\Common\StylusTouchDeviceBase.cs (1)
108Point position = new Point(stylusPoint.X, stylusPoint.Y);
System\Windows\Input\Stylus\Pointer\PointerInteractionEngine.cs (1)
450Convert.ToInt32(_stylusDevice.RawStylusPoint.Y),