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)
3442set => SetBounds(_x, value, _width, _height, BoundsSpecified.Y); 5609if ((specified & BoundsSpecified.Y) != 0) 10827if ((specified & BoundsSpecified.Y) == BoundsSpecified.None)
System\Windows\Forms\Form.cs (3)
5262_restoredWindowBoundsSpecified |= (specified & (BoundsSpecified.X | BoundsSpecified.Y)); 5272if ((specified & BoundsSpecified.Y) != 0) 5296if ((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) &&