13 references to restoreBounds
System.Windows.Forms (13)
winforms\Managed\System\WinForms\Form.cs (13)
2206
if (
restoreBounds
.Width == -1
2207
&&
restoreBounds
.Height == -1
2208
&&
restoreBounds
.X == -1
2209
&&
restoreBounds
.Y == -1) {
2216
return
restoreBounds
;
5887
restoreBounds
.X = x;
5889
restoreBounds
.Y = y;
5890
if ((specified & BoundsSpecified.Width) != 0 ||
restoreBounds
.Width == -1)
5891
restoreBounds
.Width = width;
5892
if ((specified & BoundsSpecified.Height) != 0 ||
restoreBounds
.Height == -1)
5893
restoreBounds
.Height = height;
6894
restoreBounds
.Size = Size;
6895
restoreBounds
.Location = Location;