System.Diagnostics.TStopwatch.IsRunning

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IsRunning: Boolean read FRunning;

C++

__property bool IsRunning = {read=FRunning};

Properties

Type Visibility Source Unit Parent
property public
System.Diagnostics.pas
System.Diagnostics.hpp
System.Diagnostics TStopwatch

Description

Specifies whether the stopwatch is started.

Use IsRunning to check whether the stopwatch is started and counting the elapsed time. To start the stopwatch, use the Start or StartNew method. To stop the stopwatch, use Stop.

See Also