creators-wb | R Documentation |
Modify and get workbook creators
wb_add_creators(wb, creators)
wb_set_creators(wb, creators)
wb_remove_creators(wb, creators)
wb_get_creators(wb)
wb |
A |
creators |
A character vector of names |
wb_set_creators()
, wb_add_creators()
, and wb_remove_creators()
return
the wbWorkbook
object
wb_get_creators()
returns a character
vector of creators
Other workbook wrappers:
base_font-wb
,
col_widths-wb
,
grouping-wb
,
row_heights-wb
,
wb_add_chartsheet()
,
wb_add_data()
,
wb_add_data_table()
,
wb_add_formula()
,
wb_add_hyperlink()
,
wb_add_pivot_table()
,
wb_add_slicer()
,
wb_add_worksheet()
,
wb_base_colors
,
wb_clone_worksheet()
,
wb_copy_cells()
,
wb_freeze_pane()
,
wb_merge_cells()
,
wb_save()
,
wb_set_last_modified_by()
,
wb_workbook()
# workbook made with default creator (see [wbWorkbook])
wb <- wb_workbook()
wb_get_creators(wb)
# add a new creator (assuming "test" isn't your default creator)
wb <- wb_add_creators(wb, "test")
wb_get_creators(wb)
# remove the creator (should be the same as before)
wb <- wb_remove_creators(wb, "test")
wb_get_creators(wb)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.