Vcl.Controls.TCMFloat

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TCMFloat = record
    Msg: Cardinal;
    MsgFiller: TDWordFiller;
    Reserved: WPARAM;
    DockSource: TDragDockObject;
    Result: LRESULT;
  end;

C++

struct DECLSPEC_DRECORD TCMFloat
{
public:
    unsigned Msg;
#ifndef _WIN64
#else /* _WIN64 */
    Winapi::Messages::TDWordFiller MsgFiller;
#endif /* _WIN64 */
    NativeUInt Reserved;
    TDragDockObject* DockSource;
    NativeInt Result;
};

Properties

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

Description

TCMFloat is used with a CM_FLOAT message.

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


Field Meaning

Msg

Represents the Windows message code.

Reserved

Unused.

DockSource

Contains drag-and-dock information for the control.

Result

Holds the value returned by the application processing the message.


The TCMFloat type is used internally.


See Also