Function Reference

首页  后退  前进

OnAutoItExitUnRegister

 

注销 AutoIt 退出时调用的函数.

 

OnAutoItExitUnRegister ( "function" )

参数

function

用户自定义函数名称.

返回值

成功:

返回 1.

失败:

返回 0.

相关

OnAutoItExitRegister

函数示例

#include <MsgBoxConstants.au3>
OnAutoItExitRegister("MyTestFunc")
OnAutoItExitRegister("MyTestFunc2")
Sleep(1000)
OnAutoItExitUnRegister("MyTestFunc")
Func MyTestFunc()
    MsgBox($MB_SYSTEMMODAL, "Exit Results 1", 'Exit Message from MyTestFunc()')
EndFunc   ;==>MyTestFunc
Func MyTestFunc2()
    MsgBox($MB_SYSTEMMODAL, "Exit Results 2", 'Exit Message from MyTestFunc()')
EndFunc   ;==>MyTestFunc2

----------------------------------------