2 writes to _height
System.Windows.Forms (2)
System\Windows\Forms\Control.cs (2)
358
_height
= defaultSize.Height;
10766
_height
= height;
19 references to _height
System.Windows.Forms (19)
System\Windows\Forms\Control.cs (19)
365
if (_width != 0 &&
_height
!= 0)
373
_clientHeight =
_height
- rect.Height;
996
public int Bottom => _y +
_height
;
1009
get => new(_x, _y, _width,
_height
);
1317
cp.Height =
_height
;
2156
get =>
_height
;
2409
set => SetBounds(value, _y, _width,
_height
, BoundsSpecified.X);
2421
set => SetBounds(value.X, value.Y, _width,
_height
, BoundsSpecified.Location);
3012
get => new(_width,
_height
);
3175
set => SetBounds(_x, value, _width,
_height
, BoundsSpecified.Y);
3532
set => SetBounds(_x, _y, value,
_height
, BoundsSpecified.Width);
9776
int sh =
_height
;
9779
sh = (int)(Math.Round((_y +
_height
) * dy)) - sy;
9938
if (_x != x || _y != y || _width != width ||
_height
!= height)
9983
height =
_height
;
9986
if (_x != x || _y != y || _width != width ||
_height
!= height)
10026
if (_x == x && _y == y && _width == width &&
_height
== height)
10060
if (_width == width &&
_height
== height)
10622
return _width != s.Width ||
_height
!= s.Height;