italic: Return or set italics

Description Usage Arguments Value Examples

View source: R/properties.R

Description

These property functions modify or return the italics attribute of a hf_line object. The italic attribute takes on a logical value of TRUE or FALSE, where TRUE italicizes the text of the line.

Usage

1
2
3
4
5
italic(x, ...)

italic(x) <- value

set_italic(x, value)

Arguments

x

A hf_line object

...

Additonal arguments passed to method dispatch

value

A logical vector to set the value of the bold attribute

Value

For italic(), the italic attribute of the supplied hf_line. Fot `italic<-()` and set_italic() the modified object.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
library(huxtable)
ht <- huxtable(
  column1 = 1:5,
  column2 = letters[1:5]
)
rtf <- rtf_doc(ht, list(hf_line("aTitle")))

pharmaRTF::italic(rtf$titles[[1]])
# Returns FALSE

pharmaRTF::italic(rtf$titles[[1]]) <- TRUE
# Sets italic to TRUE

pharmaRTF documentation built on Sept. 28, 2021, 5:08 p.m.