Create RTF Table Body Encode
rtf_table_content(
tbl,
col_total_width = attr(tbl, "page")$col_width,
use_border_bottom = FALSE,
border_left = attr(tbl, "border_left"),
border_right = attr(tbl, "border_right"),
border_top = attr(tbl, "border_top"),
border_bottom = attr(tbl, "border_bottom"),
border_color_left = attr(tbl, "border_color_left"),
border_color_right = attr(tbl, "border_color_right"),
border_color_top = attr(tbl, "border_color_top"),
border_color_bottom = attr(tbl, "border_color_bottom"),
border_width = attr(tbl, "border_width"),
col_rel_width = attr(tbl, "col_rel_width"),
cell_height = attr(tbl, "cell_height"),
cell_justification = attr(tbl, "cell_justification"),
text_font = attr(tbl, "text_font"),
text_format = attr(tbl, "text_format"),
text_color = attr(tbl, "text_color"),
text_background_color = attr(tbl, "text_background_color"),
text_justification = attr(tbl, "text_justification"),
text_font_size = attr(tbl, "text_font_size"),
text_space_before = attr(tbl, "text_space_before"),
text_space_after = attr(tbl, "text_space_after"),
text_convert = attr(tbl, "text_convert")
)A data frame.
Column total width for the table. Default is the corresponding attribute from tbl.
A logical value of using the bottom border. Default is the corresponding attribute from tbl.
Left border type. Default is the corresponding attribute from tbl.
Right border type. Default is the corresponding attribute from tbl.
Top border type. Default is the corresponding attribute from tbl.
Bottom border type. Default is the corresponding attribute from tbl.
Left border color. Default is the corresponding attribute from tbl.
Right border color. Default is the corresponding attribute from tbl.
Top border color. Default is the corresponding attribute from tbl.
Bottom border color. Default is the corresponding attribute from tbl.
Border width in twips. Default is the corresponding attribute from tbl.
Column relative width in a vector eg. c(2,1,1) refers to 2:1:1
Height for cell in twips. Default is the corresponding attribute from tbl.
Justification for cell. Default is the corresponding attribute from tbl.
Text font type. Default is the corresponding attribute from tbl.
Text format. Default is the corresponding attribute from tbl.
Text color. Default is the corresponding attribute from tbl.
Text background color. Default is the corresponding attribute from tbl.
Justification for text. Default is the corresponding attribute from tbl.
Text font size. Default is the corresponding attribute from tbl.
Line space before text. Default is the corresponding attribute from tbl.
Line space after text. Default is the corresponding attribute from tbl.
A logical value to convert special characters. Default is the corresponding attribute from tbl.
The contents of this section are shown in PDF user manual only.