Axiom.RenderSystems.DirectX9.D3DRenderWindow.Reposition C# (CSharp) 메소드

Reposition() 공개 메소드

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