12 references to Y
System.Windows.Forms (9)
System\Windows\Forms\BoundsSpecified.cs (2)
34/// Both <see cref="X"/> and <see cref="Y"/> coordinates of the 37Location = X | Y,
System\Windows\Forms\Control.cs (3)
3263set => SetBounds(_x, value, _width, _height, BoundsSpecified.Y); 5385if ((specified & BoundsSpecified.Y) != 0) 10098if ((specified & BoundsSpecified.Y) == BoundsSpecified.None)
System\Windows\Forms\Form.cs (3)
5246_restoredWindowBoundsSpecified |= (specified & (BoundsSpecified.X | BoundsSpecified.Y)); 5256if ((specified & BoundsSpecified.Y) != 0) 5280if ((specified & BoundsSpecified.Y) != 0)
System\Windows\Forms\Layout\CommonProperties.cs (1)
291bool yChangedButNotSpecified = ((specified & BoundsSpecified.Y) == BoundsSpecified.None) & y != originalBounds.Y;
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\Behavior\ResizeBehavior.cs (3)
701specified |= BoundsSpecified.Y; 782if (((specified & BoundsSpecified.Y) == BoundsSpecified.Y) &&