Win32Methods.IsDialogMessageA(IntPtr, MSG) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines if a message is intended for the specified dialog box, and if so processes the message.
public:
static bool IsDialogMessageA(IntPtr hDlg, Microsoft::VisualStudio::OLE::Interop::MSG % msg);
public static bool IsDialogMessageA (IntPtr hDlg, ref Microsoft.VisualStudio.OLE.Interop.MSG msg);
static member IsDialogMessageA : nativeint * MSG -> bool
Public Shared Function IsDialogMessageA (hDlg As IntPtr, ByRef msg As MSG) As Boolean
Parameters
- hDlg
-
IntPtr
nativeint
A handle to the child window.
- msg
- MSG
The message in question.
Returns
true
if the message has been processed, otherwise false
.