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)
3451set => SetBounds(_x, value, _width, _height, BoundsSpecified.Y); 5618if ((specified & BoundsSpecified.Y) != 0) 10885if ((specified & BoundsSpecified.Y) == BoundsSpecified.None)
System\Windows\Forms\Form.cs (3)
5311_restoredWindowBoundsSpecified |= (specified & (BoundsSpecified.X | BoundsSpecified.Y)); 5321if ((specified & BoundsSpecified.Y) != 0) 5345if ((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) &&