CommentCollection.RemoveAt

RemoveAt(string)

Removes the comment of the specific cell.

public void RemoveAt(string cellName)
ParameterTypeDescription
cellNameStringThe name of cell which contains a comment.

Examples


[C#]
comments.RemoveAt("B2");

See Also


RemoveAt(int, int)

Removes the comment of the specific cell.

public void RemoveAt(int row, int column)
ParameterTypeDescription
rowInt32The row index.
columnInt32the column index.

Examples


[C#]
comments.RemoveAt(1,1);

See Also