uiresume
Resumes execution of code, stopping uiwait on the given handle, handle, or stopping all uiwait commands in the current session.
Syntax
uiresume
uiresume(handle)
Inputs
- handle (optional)
- Handle of the given figure, for which the uiwait command needs to be stopped. If no arguments are given, all uiwait commands in the current session will be terminated.
Examples
Terminate all uiwait commands:
handle=figure('Name', 'Grid Identification','NumberTitle', 'off','position', [500 100 800 700]);
uiwait(handle);
uiresume
Terminate a specific uiwait command:
handle=figure('Name', 'Grid Identification','NumberTitle', 'off','position', [500 100 800 700]);
uiwait(handle);
uiresume(handle);