System.Classes.TThread.Suspended

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Suspended: Boolean read FSuspended write SetSuspended;

C++

__property bool Suspended = {read=FSuspended, write=SetSuspended, nodefault};

Properties

Type Visibility Source Unit Parent
property public
System.Classes.pas
System.Classes.hpp
System.Classes TThread

Description

Indicates whether a thread is suspended.

Set Suspended to true to suspend a thread; set it to false to resume it. Suspended threads do not continue execution until they are resumed.

See Also