8 writes to Height
PresentationCore (2)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\DrawingAttributeSerializer.cs (1)
390da.Height = GetCappedHeightOrWidth(height);
Core\CSharp\System\Windows\Ink\Stroke2.cs (1)
431selectedDA.Height = Math.Max(selectedDA.Height, DrawingAttributes.DefaultHeight);
PresentationFramework (6)
src\Framework\MS\Internal\Ink\PenCursorManager.cs (5)
85da.Height = stylusShape.Height; 361da.Height = drawingAttributes.Height; 370singleStroke.DrawingAttributes.Height = ConvertToPixel(singleStroke.DrawingAttributes.Height, dpiScaleY); 399singleStroke.DrawingAttributes.Height = 1.0; 404singleStroke.DrawingAttributes.Height = maxLength;
src\Framework\System\Windows\Controls\StickyNote.cs (1)
1831da.Height = PenWidth;
14 references to Height
PresentationCore (12)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\DrawingAttributeSerializer.cs (1)
674double stylusHeight = da.Height;
Core\CSharp\MS\Internal\Ink\StrokeRenderer.cs (1)
258double maxExtent = Math.Max(drawingAttributes.Height, drawingAttributes.Width);
Core\CSharp\System\Windows\Ink\DrawingAttributes.cs (4)
397s = new RectangleStylusShape(this.Width, this.Height); 401s = new EllipseStylusShape(this.Width, this.Height); 766DoubleUtil.AreClose(left.Height, right.Height) &&
Core\CSharp\System\Windows\Ink\IncrementalHitTester.cs (4)
848weight += Math.Sqrt(da.Width*da.Width + da.Height*da.Height) / 2.0f; 858weight += Math.Sqrt(da.Width*da.Width + da.Height*da.Height) / 2.0f;
Core\CSharp\System\Windows\Ink\Stroke2.cs (2)
431selectedDA.Height = Math.Max(selectedDA.Height, DrawingAttributes.DefaultHeight); 732Point h = originalDa.StylusTipTransform.Transform(new Point(0, originalDa.Height));
PresentationFramework (2)
src\Framework\MS\Internal\Ink\PenCursorManager.cs (2)
361da.Height = drawingAttributes.Height; 370singleStroke.DrawingAttributes.Height = ConvertToPixel(singleStroke.DrawingAttributes.Height, dpiScaleY);