| bold {pharmaRTF} | R Documentation | 
Return or set bold
Description
These property functions modify or return the bold attribute of a
hf_line object.
Usage
bold(x, ...)
bold(x) <- value
set_bold(x, value)
Arguments
| x | A  | 
| ... | Additonal arguments passed to method dispatch | 
| value | A logical vector to set the value of the bold attribute | 
Value
For bold(), the bold attribute of the supplied hf_line
object. For `bold<-`() and set_bold(), the modified object.
Examples
library(huxtable)
ht <- huxtable(
  column1 = 1:5,
  column2 = letters[1:5]
)
rtf <- rtf_doc(ht, list(hf_line("aTitle")))
pharmaRTF::bold(rtf$titles[[1]])
# Returns FALSE
pharmaRTF::bold(rtf$titles[[1]]) <- TRUE
# Sets bold to TRUE
[Package pharmaRTF version 0.1.4 Index]