1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/CommentClass.R
\name{removeComment}
\alias{removeComment}
\title{Remove a comment from a cell}
\usage{
removeComment(wb, sheet, cols, rows, gridExpand = TRUE)
}
\arguments{
\item{wb}{A workbook object}
\item{sheet}{A vector of names or indices of worksheets}
\item{cols}{Columns to delete comments from}
\item{rows}{Rows to delete comments from}
\item{gridExpand}{If \code{TRUE}, all data in rectangle min(rows):max(rows) X min(cols):max(cols)
will be removed.}
}
\description{
Remove a cell comment from a worksheet
}
\seealso{
\code{\link[=createComment]{createComment()}}
\code{\link[=writeComment]{writeComment()}}
}
|