Vcl.Forms.TCMHintShowPause

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TCMHintShowPause = record
    Msg: Cardinal;
    MsgFiller: TDWordFiller;
    WasActive: Integer;
    WasActiveFiller: TDWordFiller;
    Pause: PInteger;
    Result: LRESULT;
  end;

C++

struct DECLSPEC_DRECORD TCMHintShowPause
{
public:
    unsigned Msg;
#ifndef _WIN64
#else /* _WIN64 */
    Winapi::Messages::TDWordFiller MsgFiller;
#endif /* _WIN64 */
    int WasActive;
#ifndef _WIN64
#else /* _WIN64 */
    Winapi::Messages::TDWordFiller WasActiveFiller;
#endif /* _WIN64 */
    int *Pause;
    NativeInt Result;
};

Properties

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

Description

Record that specifies the duration that a hint is displayed.

TCMHintShowPause is a record that specifies the duration that a hint is displayed. WasActive is True if the hint is already visible. Pause is the lingering of the hint on-screen.

See Also