Winapi.Messages.TWMNotify

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TWMNotify = record

C++

struct DECLSPEC_DRECORD TWMNotify
{
public:
    unsigned Msg;
    NativeUInt IDCtrl;
    tagNMHDR *NMHdr;
    NativeInt Result;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Winapi.Messages.pas
Winapi.Messages.hpp
Winapi.Messages Winapi.Messages

Description

TWMNotify represents a Windows notification message.

TWMNotify is the data structure used for all Windows notification messages. The Msg field is the Windows message code. The IDCtrl field is the resource ID of the control that sent the notification. The NMHdr field is a pointer to a notification header. This data structure has three members: hwndFrom, which is the window handle of the control that sent the notification, idFrom, which is the same as the IDCtrl field of TWMNotify, and code, which is the notification code. The notification code’s meaning depends on the type of control that sent the message. The Result field holds the value returned by the application processing the message.

See Also