Property TLMainThredEvent.TTLMainThredEvent.Blocking
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TTLMainThredEvent
Contents |
Syntax
Delphi:
property Blocking : Boolean read FBlocking write SetBlocking default False;
C++ Builder:
__property bool Blocking = { read=FBlocking, write=SetBlocking, default=False };
Summary
Specifies whether the the Fire event will wait until the notification is processed before returning.
Description
Use this property to specify whether the the Fire event will
wait until the notification is processed before returning.
Delphi example:
TLMainThredEvent1.Enabled := True;
C++ Builder example:
TLMainThredEvent1->Enabled = true;
Visual C++(MFC/Win32) example:
TLMainThredEvent1.Enabled = true;
Visual C++/CLI example:
mainThredEvent1->Enabled = true;
C# example:
mainThredEvent1.Enabled = true;
VB example:
MainThredEvent1.Enabled = True