1 write to x
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Control.cs (1)
12571this.x = x;
18 references to x
System.Windows.Forms (18)
winforms\Managed\System\WinForms\Control.cs (18)
1372return new Rectangle(x, y, width, height); 1867cp.X = x; 2917SetBounds(x, y, width, value, BoundsSpecified.Height); 3215return x; 3233return new Point(x, y); 3725return x + width; 3896SetBounds(x, y, value.Width, value.Height, BoundsSpecified.Size); 4105SetBounds(x, value, width, height, BoundsSpecified.Y); 4462SetBounds(x, y, value, height, BoundsSpecified.Width); 11583int sx = (int)Math.Round(x * dx); 11588sw = (int)(Math.Round((x + width) * dx)) - sx; 11804if (this.x != x || this.y != y || this.width != width || 11823if ((specified & BoundsSpecified.X) == BoundsSpecified.None) x = this.x; 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)) {