attr_off {cursr} | R Documentation |
Turns off text attributes in the terminal, including bold text, italics, underline, etc.
attr_off(...)
... |
characters indicating attributes to turn off. |
Use attr_on
to turn on attributes.
NULL
Other style functions:
attr_on()
,
bg_off()
,
bg_on()
,
color_off()
,
color_pair()
,
fg_off()
,
fg_on()
,
make_bg()
,
make_fg()
,
make_style()
,
reset()
,
style()
cat("hello world!\n")
attr_on("bf", "ul")
cat("hello world!\n")
attr_off("bf")
cat("hello world!\n")
attr_off()
cat("hello world!\n")