2 writes to _height
System.Windows.Forms (2)
System\Windows\Forms\Control.cs (2)
370_height = defaultSize.Height; 10905_height = height;
19 references to _height
System.Windows.Forms (19)
System\Windows\Forms\Control.cs (19)
377if (_width != 0 && _height != 0) 385_clientHeight = _height - rect.Height; 1091public int Bottom => _y + _height; 1104get => new(_x, _y, _width, _height); 1405cp.Height = _height; 2244get => _height; 2497set => SetBounds(value, _y, _width, _height, BoundsSpecified.X); 2509set => SetBounds(value.X, value.Y, _width, _height, BoundsSpecified.Location); 3100get => new(_width, _height); 3263set => SetBounds(_x, value, _width, _height, BoundsSpecified.Y); 3620set => SetBounds(_x, _y, value, _height, BoundsSpecified.Width); 9904int sh = _height; 9907sh = (int)(Math.Round((_y + _height) * dy)) - sy; 10063if (_x != x || _y != y || _width != width || _height != height) 10108height = _height; 10111if (_x != x || _y != y || _width != width || _height != height) 10151if (_x == x && _y == y && _width == width && _height == height) 10185if (_width == width && _height == height) 10761return _width != s.Width || _height != s.Height;