ExitApp

Terminates the script.

ExitApp , ExitCode

매개변수

ExitCode

An integer between -2147483648 and 2147483647 (or [in v1.0.48.01+] an expression) that is returned to its caller when the script exits. 이 코드는 스크립트를 부화시킨 어느 프로그램도 접급할 수 있습니다. 예를 들어 (RunWait를 통한) 스크립트 또는 배치 파일(.bat). 생략하면, ExitCode는 기본값으로 0이 설정됩니다. 전통적으로 0은 성공을 나타내는 데 사용됩니다.

논평

이는 스크립트의 트레이 아이콘이나 메인 메뉴에서 "Exit"를 선택한 것과 동등합니다.

Any OnExit function or subroutine which has been registered by the script will be called automatically, and may prevent the script from terminating. In such a case, the current thread exits as if Exit was called.

Terminating the script is not the same as exiting each thread. For instance, Finally blocks are not executed and __Delete is not called for objects contained by local variables.

Exit, OnExit(), OnExit, #Persistent

예제

Press a hotkey to terminate the script.

#x::ExitApp  ; Win+X