ui.Interface.ProgressMessageStop() method is used to terminate the progress message created with ui.Interface.ProgressMessage().
Syntax
ui.Interface.ProgressMessageStop(<progress_message_id>)
Arguments
| Arguments | Description |
| <progress_message_id> | The identifier of a progress messages, INT |
Usage and examples
CALL ui.Interface.ProgressMessage(1,"Please wait...","circular")
...
#do the job
...
CALL ui.Interface.ProgressMessageStop(1)