Nothing
#' @title Delete flextable content
#' @description Set content display as a blank `" "`.
#' @param x `flextable` object
#' @param j columns selection
#' @param part partname of the table
#' @examples
#' ftab <- flextable(head(mtcars))
#' ftab <- void(ftab, ~ vs + am + gear + carb)
#' ftab
#' @export
void <- function(x, j = NULL, part = "body") {
if (!inherits(x, "flextable")) {
stop(sprintf("Function `%s` supports only flextable objects.", "void()"))
}
part <- match.arg(part, c("all", "body", "header", "footer"), several.ok = FALSE)
if (part == "all") {
for (p in c("header", "body", "footer")) {
x <- void(x = x, j = j, part = p)
}
return(x)
}
if (nrow_part(x, part) < 1) {
return(x)
}
j <- get_columns_id(x[[part]], j)
j <- x$col_keys[j]
newcontent <- as_chunkset_struct(
l_paragraph = rep(
as_paragraph(as_chunk(x = "", fp_text_default())),
nrow_part(x, part)
),
keys = j,
i = seq_len(nrow_part(x, part)))
x[[part]]$content <- set_chunkset_struct_element(
x = x[[part]]$content,
j = j,
value = newcontent)
x
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.