2 writes to _height
System.Windows.Forms (2)
System\Windows\Forms\Control.cs (2)
380
_height
= defaultSize.Height;
11694
_height
= height;
19 references to _height
System.Windows.Forms (19)
System\Windows\Forms\Control.cs (19)
387
if (_width != 0 &&
_height
!= 0)
395
_clientHeight =
_height
- rect.Height;
1279
public int Bottom => _y +
_height
;
1292
get => new(_x, _y, _width,
_height
);
1593
cp.Height =
_height
;
2432
get =>
_height
;
2685
set => SetBounds(value, _y, _width,
_height
, BoundsSpecified.X);
2697
set => SetBounds(value.X, value.Y, _width,
_height
, BoundsSpecified.Location);
3288
get => new(_width,
_height
);
3451
set => SetBounds(_x, value, _width,
_height
, BoundsSpecified.Y);
3808
set => SetBounds(_x, _y, value,
_height
, BoundsSpecified.Width);
10693
int sh =
_height
;
10696
sh = (int)(Math.Round((_y +
_height
) * dy)) - sy;
10852
if (_x != x || _y != y || _width != width ||
_height
!= height)
10897
height =
_height
;
10900
if (_x != x || _y != y || _width != width ||
_height
!= height)
10940
if (_x == x && _y == y && _width == width &&
_height
== height)
10974
if (_width == width &&
_height
== height)
11550
return _width != s.Width ||
_height
!= s.Height;