9 references to Y
System.Windows.Forms (9)
winforms\Managed\System\WinForms\BoundsSpecified.cs (1)
69Location = X | Y,
winforms\Managed\System\WinForms\Control.cs (4)
4105SetBounds(x, value, width, height, BoundsSpecified.Y); 6615if ((specified & BoundsSpecified.Y) != 0) { 11507if (dy == 1.0F) specified &= ~(BoundsSpecified.Y | BoundsSpecified.Height); 11824if ((specified & BoundsSpecified.Y) == BoundsSpecified.None) y = this.y;
winforms\Managed\System\WinForms\Form.cs (3)
5867restoredWindowBoundsSpecified |= (specified & (BoundsSpecified.X | BoundsSpecified.Y)); 5873if ((specified & BoundsSpecified.Y) != 0) 5888if ((specified & BoundsSpecified.Y) != 0)
winforms\Managed\System\WinForms\Layout\CommonProperties.cs (1)
280bool yChangedButNotSpecified = ((specified & BoundsSpecified.Y) == BoundsSpecified.None) & y != originalBounds.Y;