flextable (version 0.5.6)

as_chunk: chunk of text wrapper

Description

The function lets add text within flextable objects with function compose. It should be used inside a call to as_paragraph.

Usage

as_chunk(x, props = NULL, formater = format_fun, ...)

Arguments

x

text or any element that can be formatted as text with function provided in argument formater.

props

an fp_text object to be used to format the text. If not specified, it will be the default value corresponding to the cell.

formater

a function that will format x as a character vector.

...

additional arguments for formater function.

See Also

Other chunk elements for paragraph: as_bracket, as_b, as_image, as_i, as_sub, as_sup, hyperlink_text, linerange, lollipop, minibar

Examples

Run this code
# NOT RUN {
library(officer)

myft <- flextable( head(iris))

myft <- compose( myft, j = "Sepal.Length",
 value = as_paragraph(
   "Sepal.Length value is ",
   as_chunk(Sepal.Length, props = fp_text(color = "red"))
 ),
 part = "body")
myft <- color(myft, color = "gray40", part = "all")
autofit(myft)
# }

Run the code above in your browser using DataLab