User32IsMenu(IntPtr) Method
Determines whether a handle is a menu handle.
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("User32.dll")]
public static bool IsMenu(
IntPtr hMenu
)
<DllImportAttribute("User32.dll">]
Public Shared Function IsMenu (
hMenu As IntPtr
) As Boolean
Dim hMenu As IntPtr
Dim returnValue As Boolean
returnValue = User32.IsMenu(hMenu)
public:
[DllImportAttribute(L"User32.dll")]
static bool IsMenu(
IntPtr hMenu
)
[<DllImportAttribute("User32.dll")>]
static member IsMenu :
hMenu : IntPtr -> bool
No code example is currently available or this language may not be supported.
- hMenu IntPtr
-
A handle to be tested.
Boolean
If the handle is a menu handle, the return is
.
If the handle is not a menu handle, the return value is
.