2 writes to _height
System.Windows.Forms (2)
System\Windows\Forms\Control.cs (2)
359_height = defaultSize.Height; 10799_height = height;
19 references to _height
System.Windows.Forms (19)
System\Windows\Forms\Control.cs (19)
366if (_width != 0 && _height != 0) 374_clientHeight = _height - rect.Height; 997public int Bottom => _y + _height; 1010get => new(_x, _y, _width, _height); 1318cp.Height = _height; 2157get => _height; 2410set => SetBounds(value, _y, _width, _height, BoundsSpecified.X); 2422set => SetBounds(value.X, value.Y, _width, _height, BoundsSpecified.Location); 3013get => new(_width, _height); 3176set => SetBounds(_x, value, _width, _height, BoundsSpecified.Y); 3533set => SetBounds(_x, _y, value, _height, BoundsSpecified.Width); 9809int sh = _height; 9812sh = (int)(Math.Round((_y + _height) * dy)) - sy; 9971if (_x != x || _y != y || _width != width || _height != height) 10016height = _height; 10019if (_x != x || _y != y || _width != width || _height != height) 10059if (_x == x && _y == y && _width == width && _height == height) 10093if (_width == width && _height == height) 10655return _width != s.Width || _height != s.Height;