Share via


PSM_ISDIALOGMESSAGE

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This message passes a message to a property sheet dialog box and indicates whether the dialog processed the message. You can send this message explicitly or by using the PropSheet_IsDialogMessage macro.

Syntax

PSM_ISDIALOGMESSAGE  wParam = 0;  
    lParam = (LPARAM) pMsg; 

Parameters

  • wParam
    Not used.
  • pMsg
    Pointer to an MSG structure that contains the message to be checked.

Return Value

TRUE indicates that the message has been processed. FALSE indicates that the message has not been processed.

Remarks

Your message loop should use the PSM_ISDIALOGMESSAGE message with modeless property sheets to pass messages to the property sheet dialog box.

If the return value indicates that the message was processed, it must not be passed to the DispatchMessage function.

Requirements

Header commctrl.h
Windows Embedded CE Windows CE 1.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

DispatchMessage
TranslateMessage
PropertySheet
MSG