System.Windows.Forms.ScrollableControl.DockPaddingEdges.Scale C# (CSharp) Method

Scale() private method

private Scale ( float dx, float dy ) : void
dx float
dy float
return void
			internal void Scale (float dx, float dy)
			{
				Left = (int)(Left * dx);
				Right = (int)(Right * dx);
				Top = (int)(Top * dy);
				Bottom = (int)(Bottom * dy);
			}