Vcl.Controls.TCMFocusChanged

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCMFocusChanged = record

C++

struct DECLSPEC_DRECORD TCMFocusChanged
{
public:
    unsigned Msg;
#ifndef _WIN64
    unsigned Unused;
#else /* _WIN64 */
    Winapi::Messages::TDWordFiller MsgFiller;
    unsigned __int64 Unused;
#endif /* _WIN64 */
    TWinControl* Sender;
#ifndef _WIN64
    int Result;
#else /* _WIN64 */
    __int64 Result;
#endif /* _WIN64 */
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

Description

TCMFocusChanged is used with a CM_FOCUSCHANGED message.

An object of type TCMFocusChanged is used with a CM_FOCUSCHANGED message. The following table lists the fields contained by TCMFocusChanged:

Field Meaning

Msg

Represents the Windows message code.

Unused

Unused.

Sender

The control that sends the message.

Result

Holds the value returned by the application processing the message.


The TCMFocusChanged type is used internally.


See Also