Winapi.Messages.TWMMove

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TWMMove = record
    Msg: Cardinal;
    MsgFiller: TDWordFiller;
    Unused: WPARAM;
    case Integer of
      0: (
        XPos: Smallint;
        YPos: Smallint;
        XYPosFiller: TDWordFiller);
      1: (
        Pos: TSmallPoint;
        PosFiller: TDWordFiller;
        Result: LRESULT);
  end;

C++

struct DECLSPEC_DRECORD TWMMove
{
public:
    unsigned Msg;
    NativeUInt Unused;
public:
    union
    {
        struct
        {
            System::Types::TSmallPoint Pos;
            NativeInt Result;
        };
        struct
        {
            short XPos;
            short YPos;
        };
    };
};

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_MOVE.

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

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