attr_off {cursr} | R Documentation |
Attributes Off
Description
Turns off text attributes in the terminal, including bold text, italics, underline, etc.
Usage
attr_off(...)
Arguments
... |
characters indicating attributes to turn off. |
Details
Use attr_on
to turn on attributes.
Value
NULL
See Also
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()
Examples
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")
[Package cursr version 0.1.0 Index]