R/clinpage.R

Defines functions new_clinpage

#' Blank object creator for a clintable object
#'
#' @noRd
new_clinpage <- function() {
    structure(
        list(
            header = NULL,
            body = NULL,
            footer = NULL,
            col_keys = NULL,
            caption = NULL,
            blanks = NULL,
            properties = NULL
        ),
        class = c("clinpage", "flextable")
    )
}

Try the clinify package in your browser

Any scripts or data that you put into this service are public.

clinify documentation built on April 12, 2025, 1:45 a.m.