Syntax |
Exit Function |
Description |
Causes execution to exit the current function, continuing execution on the statement following the call to this function. |
Comments |
This statement can only appear within a function. |
Example |
This function displays a message and then terminates with Exit Function. Function Test_Exit() As Integer Sub Main() |
See Also |
Stop (statement); Exit For (statement); Exit Do (statement); Exit Sub (statement); End (statement); Do...Loop (statement). |
E |