Skip to main content

Quit-Process

Command Description

Quit process

Command Prototype

Exit()

Parameter Description

ParameterRequiredTypeDefaultDescription
NoneNoneNoneNoneNone
TracePrint("------------------------------------Exit the process--------- ----------------------------------") 
//[Note] Exit the process.
//-------------------------------------------------------------------------------
TracePrint("Let a be UiBot, conditional branch, exit the process if a=UiBot")
a = "UiBot"
If a = "UiBot"
exit()
End If