Vcl.Controls.TCMUnDockClient

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

 TCMUnDockClient = record
 Msg: Cardinal;
 MsgFiller: TDWordFiller;
 NewTarget: TControl;
 Client: TControl;
 Result: LRESULT;
 end;

C++

struct DECLSPEC_DRECORD TCMUnDockClient
{
public:
 unsigned Msg;
#ifndef _WIN64
#else /* _WIN64 */
 Winapi::Messages::TDWordFiller MsgFiller;
#endif /* _WIN64 */
 TControl* NewTarget;
 TControl* Client;
 NativeInt Result;
};

Properties

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

Description

TCMUnDockClient is used with a CM_UNDOCKCLIENT message.

An object of type TCMUnDockClient is used with a CM_UNDOCKCLIENT message.


The following table lists the fields of TCMUnDockClient:

Field Meaning

Msg

Represents the Windows message code.

NewTarget

The control in which the drag-and-dock operation is executed.

Client

The control that sends the message.

Result

Holds the value returned by the application processing the message.


The TCMUnDockClient type is used internally.

See Also

Retrieved from "https://docwiki.embarcadero.com/Libraries/Tokyo/e/index.php?title=Vcl.Controls.TCMUnDockClient&oldid=199563"