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 );
			}
		}