1 write to y
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Control.cs (1)
12572this.y = y;
18 references to y
System.Windows.Forms (18)
winforms\Managed\System\WinForms\Control.cs (18)
1355return y + height; 1372return new Rectangle(x, y, width, height); 1868cp.Y = y; 2917SetBounds(x, y, width, value, BoundsSpecified.Height); 3218SetBounds(value, y, width, height, BoundsSpecified.X); 3233return new Point(x, y); 3896SetBounds(x, y, value.Width, value.Height, BoundsSpecified.Size); 4102return y; 4462SetBounds(x, y, value, height, BoundsSpecified.Width); 11584int sy = (int)Math.Round(y * dy); 11592sh = (int)(Math.Round((y + height) * dy)) - sy; 11804if (this.x != x || this.y != y || this.width != width || 11824if ((specified & BoundsSpecified.Y) == BoundsSpecified.None) y = this.y; 11827if (this.x != x || this.y != y || this.width != width || 11870if (this.x != x || this.y != y || this.width != width || this.height != height) { 11887if (this.x == x && this.y == y) { 12567bool newLocation = this.x != x || this.y != y; 14520if (locationProperty != null && !locationProperty.IsReadOnly && (bounds.X != this.x || bounds.Y != this.y)) {