wb_add_form_control {openxlsx2} | R Documentation |
Add a checkbox, radio button or drop menu to a cell in a worksheet
Description
You can add Form Control to a cell. The three supported types are a Checkbox, a Radio button, or a Drop menu.
Usage
wb_add_form_control(
wb,
sheet = current_sheet(),
dims = "A1",
type = c("Checkbox", "Radio", "Drop"),
text = NULL,
link = NULL,
range = NULL,
checked = FALSE
)
Arguments
wb |
A Workbook object |
sheet |
A worksheet of the workbook |
dims |
A single cell as spreadsheet dimension, e.g. "A1". |
type |
A type "Checkbox" (the default), "Radio" a radio button or "Drop" a drop down menu |
text |
A text to be shown next to the Checkbox or radio button (optional) |
link |
A cell range to link to |
range |
A cell range used as input |
checked |
A logical indicating if the Checkbox or Radio button is checked |
Value
The wbWorkbook
object, invisibly.
Examples
wb <- wb_workbook() %>% wb_add_worksheet() %>%
wb_add_form_control()
# Add
wb$add_form_control(dims = "C5", type = "Radio", checked = TRUE)
[Package openxlsx2 version 1.8 Index]