System.Windows.Forms.XplatUIX11.MoveResizeWindow C# (CSharp) Method

MoveResizeWindow() static private method

static private MoveResizeWindow ( IntPtr display, IntPtr window, int x, int y, int width, int height ) : int
display IntPtr
window IntPtr
x int
y int
width int
height int
return int
		internal static int MoveResizeWindow(IntPtr display, IntPtr window, int x, int y, int width, int height)
		{
			int ret = XMoveResizeWindow (display, window, x, y, width, height);
			Keyboard.MoveCurrentCaretPos ();
			return ret;
		}
XplatUIX11