Axiom.RenderSystems.DirectX9.D3DRenderWindow.Reposition C# (CSharp) Method

Reposition() public method

public Reposition ( int left, int right ) : void
left int
right int
return void
		public override void Reposition( int left, int right )
		{
			if ( hWnd != null && !IsFullScreen )
			{
				hWnd.Location = new System.Drawing.Point( left, right );
			}
		}