attr_on {cursr} | R Documentation |
Attributes On
Description
Turns on text attributes in terminal, including bold text, italics, underline, etc. Note that not all terminals support each attribute.
Usage
attr_on(...)
Arguments
... |
characters indicating attributes to turn on. |
Details
Use attr_off
to turn off the attributes.
Value
NULL
See Also
Other style functions:
attr_off()
,
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()
[Package cursr version 0.1.0 Index]