8 writes to Height
PresentationCore (2)
MS\Internal\Ink\InkSerializedFormat\DrawingAttributeSerializer.cs (1)
380da.Height = GetCappedHeightOrWidth(height);
System\Windows\Ink\Stroke2.cs (1)
393selectedDA.Height = Math.Max(selectedDA.Height, DrawingAttributes.DefaultHeight);
PresentationFramework (6)
MS\Internal\Ink\PenCursorManager.cs (5)
78da.Height = stylusShape.Height; 336da.Height = drawingAttributes.Height; 345singleStroke.DrawingAttributes.Height = ConvertToPixel(singleStroke.DrawingAttributes.Height, dpiScaleY); 374singleStroke.DrawingAttributes.Height = 1.0; 379singleStroke.DrawingAttributes.Height = maxLength;
System\Windows\Controls\StickyNote.cs (1)
1794da.Height = PenWidth;
14 references to Height
PresentationCore (12)
MS\Internal\Ink\InkSerializedFormat\DrawingAttributeSerializer.cs (1)
635double stylusHeight = da.Height;
MS\Internal\Ink\StrokeRenderer.cs (1)
254double maxExtent = Math.Max(drawingAttributes.Height, drawingAttributes.Width);
System\Windows\Ink\DrawingAttributes.cs (4)
395s = new RectangleStylusShape(this.Width, this.Height); 399s = new EllipseStylusShape(this.Width, this.Height); 761DoubleUtil.AreClose(left.Height, right.Height) &&
System\Windows\Ink\IncrementalHitTester.cs (4)
837weight += Math.Sqrt(da.Width*da.Width + da.Height*da.Height) / 2.0f; 847weight += Math.Sqrt(da.Width*da.Width + da.Height*da.Height) / 2.0f;
System\Windows\Ink\Stroke2.cs (2)
393selectedDA.Height = Math.Max(selectedDA.Height, DrawingAttributes.DefaultHeight); 690Point h = originalDa.StylusTipTransform.Transform(new Point(0, originalDa.Height));
PresentationFramework (2)
MS\Internal\Ink\PenCursorManager.cs (2)
336da.Height = drawingAttributes.Height; 345singleStroke.DrawingAttributes.Height = ConvertToPixel(singleStroke.DrawingAttributes.Height, dpiScaleY);