Click or drag to resize

JCWindowsManagerSetWindowPos Method


Namespace: MASES.JCOBridge.C2JBridge
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.5.10.240120-2a3d9d79d92bde9fdf6d46131ee31d20c12fe372
Syntax
[DllImportAttribute("user32.dll", SetLastError = true)]
public static bool SetWindowPos(
	IntPtr hWnd,
	IntPtr hWndInsertAfter,
	int X,
	int Y,
	int cx,
	int cy,
	JCWindowsManagerSetWindowPosFlags uFlags
)

Parameters

hWnd  IntPtr
A handle to the window.
hWndInsertAfter  IntPtr
A handle to the window to precede the positioned window in the Z order.
X  Int32
The new position of the left side of the window, in client coordinates.
Y  Int32
The new position of the top of the window, in client coordinates.
cx  Int32
The new width of the window, in pixels.
cy  Int32
The new height of the window, in pixels.
uFlags  JCWindowsManagerSetWindowPosFlags
The window sizing and positioning flags. This parameter can be a combination of JCWindowsManagerSetWindowPosFlags values.

Return Value

Boolean
If the function succeeds, the return value is . If the function fails, the return value is . To get extended error information, call GetLastError.
See Also