Users are advised to use wb_add_comment()
and wb_remove_comment()
write_comment(
wb,
sheet,
col = NULL,
row = NULL,
comment,
dims = rowcol_to_dim(row, col)
)remove_comment(
wb,
sheet,
col = NULL,
row = NULL,
gridExpand = TRUE,
dims = NULL
)
A workbook object
A vector of names or indices of worksheets
Column a column number of letter. For remove_comment
this can be a range.
A row number. For remove_comment
this can be a range.
A Comment object. See create_comment()
.
worksheet cell "A1"
If TRUE
, all data in rectangle min(rows):max(rows) X min(cols):max(cols)
will be removed.