2 writes to _height
System.Windows.Forms (2)
System\Windows\Forms\Control.cs (2)
370
_height
= defaultSize.Height;
10915
_height
= height;
19 references to _height
System.Windows.Forms (19)
System\Windows\Forms\Control.cs (19)
377
if (_width != 0 &&
_height
!= 0)
385
_clientHeight =
_height
- rect.Height;
1091
public int Bottom => _y +
_height
;
1104
get => new(_x, _y, _width,
_height
);
1412
cp.Height =
_height
;
2251
get =>
_height
;
2504
set => SetBounds(value, _y, _width,
_height
, BoundsSpecified.X);
2516
set => SetBounds(value.X, value.Y, _width,
_height
, BoundsSpecified.Location);
3107
get => new(_width,
_height
);
3270
set => SetBounds(_x, value, _width,
_height
, BoundsSpecified.Y);
3627
set => SetBounds(_x, _y, value,
_height
, BoundsSpecified.Width);
9912
int sh =
_height
;
9915
sh = (int)(Math.Round((_y +
_height
) * dy)) - sy;
10071
if (_x != x || _y != y || _width != width ||
_height
!= height)
10116
height =
_height
;
10119
if (_x != x || _y != y || _width != width ||
_height
!= height)
10159
if (_x == x && _y == y && _width == width &&
_height
== height)
10193
if (_width == width &&
_height
== height)
10771
return _width != s.Width ||
_height
!= s.Height;