Winapi.Messages.TWMMDIActivate

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TWMMDIActivate = record
    Msg: Cardinal;
    MsgFiller: TDWordFiller;
    case Integer of
      0: (
        ChildWnd: HWND);
      1: (
        DeactiveWnd: HWND;
        ActiveWnd: HWND;
        Result: LRESULT);
  end;

C++

struct DECLSPEC_DRECORD TWMMDIActivate
{
public:
    unsigned Msg;
public:
    union
    {
        struct
        {
            HWND DeactiveWnd;
            HWND ActiveWnd;
            NativeInt Result;
        };
        struct
        {
            HWND ChildWnd;
        };
    };
};

Properties

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

Description

Windows message record for WM_MDIACTIVATE.

For more information about WM_MDIACTIVATE message, see the documentation in Windows Dev Center.

http://msdn.microsoft.com/library/en-us/windows/desktop/ms644911.aspx