Click or drag to resize

JCWindowsManagerSetWindowPos Method


Namespace: MASES.JCOBridge.C2JBridge
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.5.17.240622-f0da58d62b7e98f73f32432917df8eb1a5f062a3
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