User32IsWindowUnicode Method

Determines whether the specified window is a native Unicode window.

Definition

Namespace: DevCase.Win32.NativeMethods
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("User32.dll", ExactSpelling = true)]
public static bool IsWindowUnicode(
	IntPtr hWnd
)

Parameters

hWnd  IntPtr
A handle to the window to be tested.

Return Value

Boolean
If the window is a native Unicode window, the return value is .

If the window is not a native Unicode window, the return value is , meaning that the window is a native ANSI window.

To get extended error information, call GetLastWin32Error.

Remarks

See Also