tmr_title<- {hmstimer} | R Documentation |
Sets the title of a hms_timer()
.
tmr_title(x) <- value
x |
A |
value |
A string of the title. |
A copy of the hms_timer()
with the new title.
tmr <- tmr_timer(title = "A title")
tmr_print(tmr)
tmr_title(tmr) <- "A different title"
tmr_print(tmr)
tmr_title(tmr) <- NULL
tmr_print(tmr)