System.Windows.Forms.Control.SetBoundsInternal C# (CSharp) Method

SetBoundsInternal() private method

private SetBoundsInternal ( int x, int y, int width, int height, BoundsSpecified specified ) : void
x int
y int
width int
height int
specified BoundsSpecified
return void
		internal virtual void SetBoundsInternal (int x, int y, int width, int height, BoundsSpecified specified)
		{
			bounds = new Rectangle (x, y, width, height);
			//bounds.Width = width;
			//bounds.Height = height;
			UpdateBounds ();
			// If the user explicitly moved or resized us, recalculate our anchor distances
			//if (specified != BoundsSpecified.None)
			//	UpdateDistances ();
			
			if (parent != null)
				parent.PerformLayout (this, "Bounds");
		}
Control