API:Vcl.Controls.TCustomHintShowHideThread.Create
Delphi
constructor Create(Hint: TCustomHintWindow; HintObject: TCustomHint); overload;
C++
__fastcall TCustomHintShowHideThread(TCustomHintWindow* Hint, TCustomHint* HintObject)/* overload */;
/* TThread.Create */ inline __fastcall TCustomHintShowHideThread()/* overload */ : System::Classes::TThread() { }
/* TThread.Create */ inline __fastcall TCustomHintShowHideThread(bool CreateSuspended)/* overload */ : System::Classes::TThread(CreateSuspended) { }
/* TThread.Create */ inline __fastcall TCustomHintShowHideThread(bool CreateSuspended, NativeUInt ReservedStackSize)/* overload */ : System::Classes::TThread(CreateSuspended, ReservedStackSize) { }
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| constructor | public | Vcl.Controls.pas Vcl.Controls.hpp |
Vcl.Controls | TCustomHintShowHideThread |
Description
Creates an instance of a thread object. Vcl.Controls.TCustomHintShowHideThread.Create inherits from System.Classes.TThread.Create. All content below this line refers to System.Classes.TThread.Create.
Creates an instance of a thread object.
Call Create to create a thread in an application. If CreateSuspended is false, Execute is called immediately after the constructor. If CreateSuspended is true, Execute is not called until after the Start method is called.