17 writes to _height
WindowsBase (17)
Base\System\Windows\Rect.cs (14)
49
_height
= size._height;
70
_height
= height;
84
_height
= Math.Max(Math.Max(point1._y, point2._y) - _y, 0);
110
_height
= size.Height;
197
_height
= value._height;
297
_height
= value;
504
_height
= Math.Max(Math.Min(Bottom, rect.Bottom) - top, 0);
551
_height
= Double.PositiveInfinity;
557
_height
= Math.Max(maxBottom - top, 0);
671
_height
+= height;
672
_height
+= height;
745
_height
*= scaleY;
764
_height
*= -1;
798
rect.
_height
= Double.NegativeInfinity;
Shared\MS\Internal\MatrixUtil.cs (3)
75
rect.
_height
*= matrix._m22;
90
rect.
_height
= -rect._height;
117
rect.
_height
= Math.Max(Math.Max(point0.Y, point1.Y), Math.Max(point2.Y, point3.Y)) - rect._y;
13 references to _height
WindowsBase (13)
Base\System\Windows\Generated\Rect.cs (1)
332
_height
);
Base\System\Windows\Rect.cs (9)
145
Debug.Assert((!(_width < 0) && !(
_height
< 0)) || (this == Empty));
181
return new Size(_width,
_height
);
283
return
_height
;
355
return _y +
_height
;
459
_y+
_height
>= rect._y+rect.
_height
);
678
if ( !(_width >= 0 &&
_height
>= 0) )
761
_y +=
_height
;
787
(y >= _y) && (y -
_height
<= _y));
Shared\MS\Internal\MatrixUtil.cs (3)
87
if (rect.
_height
< 0.0)
89
rect._y += rect.
_height
;
90
rect._height = -rect.
_height
;