17 writes to _width
WindowsBase (17)
Base\System\Windows\Rect.cs (14)
48
_width
= size._width;
69
_width
= width;
83
_width
= Math.Max(Math.Max(point1._x, point2._x) - _x, 0);
109
_width
= size.Width;
196
_width
= value._width;
270
_width
= value;
503
_width
= Math.Max(Math.Min(Right, rect.Right) - left, 0);
539
_width
= Double.PositiveInfinity;
545
_width
= Math.Max(maxRight - left, 0);
669
_width
+= width;
670
_width
+= width;
744
_width
*= scaleX;
754
_width
*= -1;
797
rect.
_width
= Double.NegativeInfinity;
Shared\MS\Internal\MatrixUtil.cs (3)
74
rect.
_width
*= matrix._m11;
82
rect.
_width
= -rect._width;
116
rect.
_width
= Math.Max(Math.Max(point0.X, point1.X), Math.Max(point2.X, point3.X)) - rect._x;
14 references to _width
WindowsBase (14)
Base\System\Windows\Generated\Rect.cs (1)
331
_width
,
Base\System\Windows\Rect.cs (10)
145
Debug.Assert((!(
_width
< 0) && !(_height < 0)) || (this == Empty));
147
return
_width
< 0;
181
return new Size(
_width
, _height);
256
return
_width
;
338
return _x +
_width
;
458
_x+
_width
>= rect._x+rect.
_width
&&
678
if ( !(
_width
>= 0 && _height >= 0) )
751
_x +=
_width
;
786
return ((x >= _x) && (x -
_width
<= _x) &&
Shared\MS\Internal\MatrixUtil.cs (3)
79
if (rect.
_width
< 0.0)
81
rect._x += rect.
_width
;
82
rect._width = -rect.
_width
;