Initializes a new instance of the BasicThread class.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxpublic BasicThread(
Action DoEvents = null
)
Public Sub New (
Optional DoEvents As Action = Nothing
)
public:
BasicThread(
Action^ DoEvents = nullptr
)
Parameters
- DoEvents Action (Optional)
-
Optional Action to implement the equivalent of DoEvents.
Called during the BasicNoUIObj's DoEvents event.
Remarks
An instance of BasicThread allows your application to easily manage
a BasicNoUIObj object in a separate thread.
See Also