Vcl.Controls.TCMMouseActivate
Delphi
TCMMouseActivate = record
Msg: Cardinal;
MsgFiller: TDWordFiller;
Reserved: WPARAM;
MouseActivateRec: PMouseActivateRec;
Result: LRESULT;
end;
C++
struct DECLSPEC_DRECORD TCMMouseActivate
{
public:
unsigned Msg;
#ifndef _WIN64
#else /* _WIN64 */
Winapi::Messages::TDWordFiller MsgFiller;
#endif /* _WIN64 */
NativeUInt Reserved;
TMouseActivateRec *MouseActivateRec;
NativeInt Result;
};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
record struct |
public | Vcl.Controls.pas Vcl.Controls.hpp |
Vcl.Controls | Vcl.Controls |
Description
TCMMouseActivate is used with a CM_MOUSEACTIVATE message.
An object of type TCMMouseActivate is used with a CM_MOUSEACTIVATE message.
The following table lists the fields contained by TCMMouseActivate:
Field | Meaning |
---|---|
Msg |
Represents the Windows message code. |
Reserved |
Unused. |
MouseActivateRec |
Holds information about the mouse buttons and cursor. |
Result |
Holds the value returned by the application processing the message. |
The TCMMouseActivate type is used internally.