Retun

Top  Previous  Next

S

A

W

WS

ü

ü

The following commands have been implemented in EMUEScript exactly as they are implemented in OLIE™:

 

Syntax -

Return

 

Description:

This command is used in conjunction with the Call command to return the script to processing the next command following the call statement.

 

Sample:

       The following statement uses the Return command to return to the next command after the Call to the subroutine called LogRecord.

Call LogRecord

GoTo GetNextRecord

 

:LogRecord

LogLine PtID " updated successfully."

 

Return

 

 

See Also:

Call