Axiom.RenderSystems.OpenGL.OpenTKWindow.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 ( _window != null && !IsFullScreen )
			{
				_window.Location = new System.Drawing.Point( left, right );
				WindowEventMonitor.Instance.WindowMoved( this );
			}
		}