7 writes to Y
PresentationCore (7)
MS\Internal\Ink\StrokeNodeEnumerator.cs (1)
126sp.Y = lastStylusPoint.Y;
System\Windows\Ink\Stroke.cs (2)
934tempEnd.Y = endPoint.Y; 939tempBegin.Y = begPoint.Y;
System\Windows\Input\Stylus\Common\StylusPointCollection.cs (2)
386stylusPoint.Y = point.Y; 420stylusPoint.Y = point.Y;
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
861flickPoint.Y = report.GestureY;
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1617stylusPoint.Y = report.GestureY;
16 references to Y
PresentationCore (16)
MS\Internal\Ink\CuspData.cs (2)
53!DoubleUtil.AreClose(stylusPoints[i].Y, stylusPoints[i - 1].Y))
MS\Internal\Ink\StrokeNodeEnumerator.cs (1)
126sp.Y = lastStylusPoint.Y;
System\Windows\Ink\Stroke.cs (3)
979double yDistance = p2.Y - p1.Y; 984return new Point(p1.X + xFDistance, p1.Y + yFDistance);
System\Windows\Input\Stylus\Common\StylusPoint.cs (2)
424return new Point(stylusPoint.X, stylusPoint.Y); 433return new Point(this.X, this.Y);
System\Windows\Input\Stylus\Common\StylusPointCollection.cs (6)
331points[i] = new Point(stylusPoints[i].X, stylusPoints[i].Y); 383point.Y = stylusPoint.Y; 417point.Y = stylusPoint.Y; 477double yCoord = stylusPoint.Y; 525output[x + 1] = (int)Math.Round(stylusPoint.Y * StrokeCollectionSerializer.AvalonToHimetricMultiplier); 594output[1][b] = (int)Math.Round(stylusPoint.Y * StrokeCollectionSerializer.AvalonToHimetricMultiplier);
System\Windows\Input\Stylus\Common\StylusTouchDeviceBase.cs (1)
107Point position = new Point(stylusPoint.X, stylusPoint.Y);
System\Windows\Input\Stylus\Pointer\PointerInteractionEngine.cs (1)
449Convert.ToInt32(_stylusDevice.RawStylusPoint.Y),