| cli_status_clear {cli} | R Documentation | 
Clear the status bar (superseded)
Description
The cli_status_*() functions are superseded by
the cli_progress_message() and cli_progress_step() functions,
because they have a better default behavior.
Clear the status bar
Usage
cli_status_clear(
  id = NULL,
  result = c("clear", "done", "failed"),
  msg_done = NULL,
  msg_failed = NULL,
  .envir = parent.frame()
)
Arguments
id | 
 Id of the status bar container to clear. If   | 
result | 
 Whether to show a message for success or failure or just clear the status bar.  | 
msg_done | 
 If not   | 
msg_failed | 
 If not   | 
.envir | 
 Environment to evaluate the glue expressions in. It is
also used to auto-clear the status bar if   | 
See Also
The cli_progress_message() and cli_progress_step()
functions, for a superior API.
Other status bar: 
cli_process_start(),
cli_status_update(),
cli_status()