Skip to content

Latest commit

 

History

History
76 lines (46 loc) · 2.54 KB

psm-isdialogmessage.md

File metadata and controls

76 lines (46 loc) · 2.54 KB
title description ms.assetid keywords topic_type api_name api_location api_type ms.topic ms.date
PSM_ISDIALOGMESSAGE message (Prsht.h)
Passes a message to a property sheet dialog box and indicates whether the dialog box processed the message. You can send this message explicitly or by using the PropSheet\_IsDialogMessage macro.
7629c3f8-0b10-4585-8a95-9309c75b3ebb
PSM_ISDIALOGMESSAGE message Windows Controls
apiref
PSM_ISDIALOGMESSAGE
Prsht.h
HeaderDef
reference
05/31/2018

PSM_ISDIALOGMESSAGE message

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

Parameters

wParam

Must be zero.

lParam

Pointer to an MSG structure that contains the message to be checked.

Return value

Returns TRUE if the message has been processed, or FALSE if 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. On systems that support Unicode, use the Unicode versions of the GetMessage and PeekMessage functions (GetMessageW and PeekMessageW) to retrieve messages.

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

Note

This message is not supported when using the Aero wizard style (PSH_AEROWIZARD).

Requirements

Requirement Value
Minimum supported client
Windows Vista [desktop apps only]
Minimum supported server
Windows Server 2003 [desktop apps only]
Header
Prsht.h

See also

PropertySheet