6 writes to _restoredWindowBoundsSpecified
System.Windows.Forms (6)
System\Windows\Forms\Form.cs (6)
700
_restoredWindowBoundsSpecified
= preClientUpdateRestoredWindowBoundsSpecified;
5014
_restoredWindowBoundsSpecified
= 0;
5175
_restoredWindowBoundsSpecified
|= (specified & (BoundsSpecified.X | BoundsSpecified.Y));
5178
_restoredWindowBoundsSpecified
|= (specified & (BoundsSpecified.Width | BoundsSpecified.Height));
6457
_restoredWindowBoundsSpecified
= BoundsSpecified.Size;
6459
_restoredWindowBoundsSpecified
|= BoundsSpecified.Location;
3 references to _restoredWindowBoundsSpecified
System.Windows.Forms (3)
System\Windows\Forms\Form.cs (3)
682
BoundsSpecified preClientUpdateRestoredWindowBoundsSpecified =
_restoredWindowBoundsSpecified
;
5005
if ((
_restoredWindowBoundsSpecified
& BoundsSpecified.Size) != 0)
5013
_restoredWindowBoundsSpecified
);