System.SysUtils.EControlC

From RAD Studio API Documentation
Jump to: navigation, search

System.SysUtils.EExternalSystem.SysUtils.ExceptionSystem.TObjectEControlC

Delphi

EControlC = class(EExternal);

C++

class PASCALIMPLEMENTATION EControlC : public EExternal

Properties

Type Visibility Source Unit Parent
class public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

EControlC is the exception class for user interruptions.

EControlC is raised when the application is interrupted by the user.

Note: On Windows, a user interruption can only occur in console applications, when the user presses CTRL+C.

Note: On MAC OS, EControlC is raised when the program receives a TERM (15) signal. The TERM signal can be generated by the user typing the interruption character (normally CTRL+C) or by another program using the signal system call.

Run-time exception information is saved in fields provided by EExternal.

See Also