Core.NativeMethods.SetWindowPos C# (CSharp) Method

SetWindowPos() private method

private SetWindowPos ( int hWnd, int hWndInsertAfter, int X, int Y, int cx, int cy, uint uFlags ) : bool
hWnd int
hWndInsertAfter int
X int
Y int
cx int
cy int
uFlags uint
return bool
        private static extern bool SetWindowPos(
             int hWnd,                  // window handle
             int hWndInsertAfter,       // placement-order handle
             int X,                     // horizontal position
             int Y,                     // vertical position
             int cx,                    // width
             int cy,                    // height
             uint uFlags);