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. "bf" for bold face; "ft" for faint; "it" for italics; "ul" for underline; "sb" for slow blink; "fb" for fast blink; "rv" for reverse video (invert bg and fg colors); "st" for strike-through. All attributes are turned off if left blank.

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]